Merge pull request #9246 from karroffel/gdnative-header-export-thingy

[GDNative] added GDN_EXPORT macro for libraries
This commit is contained in:
Thomas Herzog 2017-06-18 01:19:40 +02:00 committed by GitHub
commit f41cc5b590

View file

@ -60,6 +60,13 @@ extern "C" {
#define GDAPI GDCALLINGCONV
#endif
// This is for libraries *using* the header, NOT GODOT EXPOSING STUFF!!
#ifdef _WIN32
#define GDN_EXPORT __declspec(dllexport)
#else
#define GDN_EXPORT
#endif
#include <stdbool.h>
#include <stdint.h>