diff options
author | Thomas Herzog <thomas.herzog@mail.com> | 2017-11-21 11:42:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-21 11:42:08 +0100 |
commit | ec4d467b4c5edac86af6aaab0545770377294346 (patch) | |
tree | d6b9f75db97b5e64b518e3dfa49960031df33840 | |
parent | c846e49a7d3439d9aef5d499ad403304d89a3b3c (diff) | |
parent | 1955fecb2da7456029d67b63b24f741f02a80ba7 (diff) |
Merge pull request #13136 from BastiaanOlij/gdnative_export_library
Revert this change, we need to export symbols on the library side
-rw-r--r-- | modules/gdnative/include/gdnative/gdnative.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/include/gdnative/gdnative.h b/modules/gdnative/include/gdnative/gdnative.h index 0a884e6106..6e69d43469 100644 --- a/modules/gdnative/include/gdnative/gdnative.h +++ b/modules/gdnative/include/gdnative/gdnative.h @@ -53,7 +53,7 @@ extern "C" { // This is for libraries *using* the header, NOT GODOT EXPOSING STUFF!! #ifdef _WIN32 -#define GDN_EXPORT +#define GDN_EXPORT __declspec(dllexport) #else #define GDN_EXPORT #endif |