Skip to content
Snippets Groups Projects
Commit 937f10ac authored by rswindell's avatar rswindell
Browse files

Eliminatd WRAPPER_DLL usage, define WRAPPER_IMPORTS or WRAPPER_EXPORTS instead.

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