From 663babec1df6ff86f4960e121024a4e3629df3e2 Mon Sep 17 00:00:00 2001 From: Karroffel Date: Sat, 18 Mar 2017 15:23:52 +0100 Subject: [PATCH] removed __stdcall --- godot.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/godot.h b/godot.h index 2f4b19e..5c63c0f 100644 --- a/godot.h +++ b/godot.h @@ -40,9 +40,9 @@ extern "C" { #if !defined(_WIN32) && !defined(_MSC_VER) #define GDAPI #elif defined(GDAPI_EXPORT) -#define GDAPI __declspec(dllexport) __stdcall +#define GDAPI __declspec(dllexport) #else -#define GDAPI __declspec(dllimport) __stdcall +#define GDAPI __declspec(dllimport) #endif #include