From a2f5d8589e25a1aae7dd0af5155e2dd65eeff4d4 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Thu, 12 Oct 2023 12:04:49 -0400 Subject: [PATCH] Fix calling convention --- LEGO1/legostream.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LEGO1/legostream.h b/LEGO1/legostream.h index 6555f6b6..220d1b6d 100644 --- a/LEGO1/legostream.h +++ b/LEGO1/legostream.h @@ -34,8 +34,8 @@ class LegoStream BinaryBit = 4, }; - static MxResult WriteVariable(LegoStream* p_stream, MxVariableTable* p_from, const char* p_variableName); - static MxS32 ReadVariable(LegoStream* p_stream, MxVariableTable* p_to); + static MxResult __stdcall WriteVariable(LegoStream* p_stream, MxVariableTable* p_from, const char* p_variableName); + static MxS32 __stdcall ReadVariable(LegoStream* p_stream, MxVariableTable* p_to); protected: MxU8 m_mode;