Merge pull request #8464 from karroffel/gdnative-msvc-fix
[GDNative] fixed msvc build
This commit is contained in:
commit
80329157a0
1 changed files with 2 additions and 2 deletions
|
@ -40,10 +40,10 @@ extern "C" {
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#if defined(GDAPI_EXPORT)
|
#if defined(GDAPI_EXPORT)
|
||||||
#define GDCALLINGCONV __cdecl
|
#define GDCALLINGCONV
|
||||||
#define GDAPI __declspec(dllexport) GDCALLINGCONV
|
#define GDAPI __declspec(dllexport) GDCALLINGCONV
|
||||||
#else
|
#else
|
||||||
#define GDCALLINGCONV __cdecl
|
#define GDCALLINGCONV
|
||||||
#define GDAPI __declspec(dllimport) GDCALLINGCONV
|
#define GDAPI __declspec(dllimport) GDCALLINGCONV
|
||||||
#endif
|
#endif
|
||||||
#elif defined(__APPLE__)
|
#elif defined(__APPLE__)
|
||||||
|
|
Loading…
Reference in a new issue