瀏覽代碼

[GDNative] added GDN_EXPORT macro for libraries

Up until now there only was GDAPI which was used
for the procedures Godot exposes.
Karroffel 8 年之前
父節點
當前提交
de18b8ee96
共有 1 個文件被更改,包括 7 次插入0 次删除
  1. 7 0
      modules/gdnative/godot.h

+ 7 - 0
modules/gdnative/godot.h

@@ -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>