diff options
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/mapi/u_compiler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mapi/mapi/u_compiler.h b/src/mapi/mapi/u_compiler.h index cc9e2cd1e81..f1752d16f27 100644 --- a/src/mapi/mapi/u_compiler.h +++ b/src/mapi/mapi/u_compiler.h @@ -28,10 +28,10 @@ #ifndef PUBLIC # if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)) # define PUBLIC __attribute__((visibility("default"))) -# define HIDDEN __attribute__((visibility("hidden"))) +# elif defined(_MSC_VER) +# define PUBLIC __declspec(dllexport) # else # define PUBLIC -# define HIDDEN # endif #endif |