parent
ae460f94ce
commit
1ad04bed96
3 changed files with 21 additions and 2 deletions
@ -1 +1,18 @@ |
||||
int not_a_zlib_function (void); |
||||
#pragma once |
||||
|
||||
#if defined _WIN32 || defined __CYGWIN__ |
||||
#if defined BUILDING_DLL |
||||
#define DLL_PUBLIC __declspec(dllexport) |
||||
#else |
||||
#define DLL_PUBLIC __declspec(dllimport) |
||||
#endif |
||||
#else |
||||
#if defined __GNUC__ |
||||
#define DLL_PUBLIC __attribute__ ((visibility("default"))) |
||||
#else |
||||
#pragma message ("Compiler does not support symbol visibility.") |
||||
#define DLL_PUBLIC |
||||
#endif |
||||
#endif |
||||
|
||||
int DLL_PUBLIC not_a_zlib_function (void); |
||||
|
Loading…
Reference in new issue