Skip to content
Snippets Groups Projects
Commit 41a03b44 authored by rswindell's avatar rswindell
Browse files

WRAPPER_EXPORTS is now used to determine if functions are DLL-exported.

parent 2a102220
No related branches found
No related tags found
No related merge requests found
...@@ -45,8 +45,8 @@ ...@@ -45,8 +45,8 @@
#undef DLLCALL #undef DLLCALL
#endif #endif
#if defined(_WIN32) && defined(_DLL) #if defined(_WIN32) && defined(WRAPPER_DLL)
#if defined(WRAPPER_DLL) #if defined(WRAPPER_EXPORTS)
#define DLLEXPORT __declspec(dllexport) #define DLLEXPORT __declspec(dllexport)
#else #else
#define DLLEXPORT __declspec(dllimport) #define DLLEXPORT __declspec(dllimport)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment