diff options
author | Thomas Herzog <karroffel@users.noreply.github.com> | 2017-04-20 13:59:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-20 13:59:04 +0200 |
commit | 80329157a069e05bdd3c5550e6b89244d190e89b (patch) | |
tree | 5f476156fefd82b7fdf723727aea9c39af50f964 /modules/gdnative/godot.h | |
parent | 99529fb80dd4914807d89dafc82087da7b4c26c2 (diff) | |
parent | a6e75c94372941236f56b199ee1617be4b5077d3 (diff) |
Merge pull request #8464 from karroffel/gdnative-msvc-fix
[GDNative] fixed msvc build
Diffstat (limited to 'modules/gdnative/godot.h')
-rw-r--r-- | modules/gdnative/godot.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdnative/godot.h b/modules/gdnative/godot.h index 88d2a9bac2..b05cafbe50 100644 --- a/modules/gdnative/godot.h +++ b/modules/gdnative/godot.h @@ -40,10 +40,10 @@ extern "C" { #ifdef _WIN32 #if defined(GDAPI_EXPORT) -#define GDCALLINGCONV __cdecl +#define GDCALLINGCONV #define GDAPI __declspec(dllexport) GDCALLINGCONV #else -#define GDCALLINGCONV __cdecl +#define GDCALLINGCONV #define GDAPI __declspec(dllimport) GDCALLINGCONV #endif #elif defined(__APPLE__) |