diff options
Diffstat (limited to 'Tests/PerConfig/pcShared.h')
-rw-r--r-- | Tests/PerConfig/pcShared.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Tests/PerConfig/pcShared.h b/Tests/PerConfig/pcShared.h index 59a6ef4..031cd79 100644 --- a/Tests/PerConfig/pcShared.h +++ b/Tests/PerConfig/pcShared.h @@ -2,13 +2,13 @@ #define pcShared_h #ifdef _WIN32 -# ifdef pcShared_EXPORTS -# define PC_EXPORT __declspec(dllexport) -# else -# define PC_EXPORT __declspec(dllimport) -# endif +#ifdef pcShared_EXPORTS +#define PC_EXPORT __declspec(dllexport) #else -# define PC_EXPORT +#define PC_EXPORT __declspec(dllimport) +#endif +#else +#define PC_EXPORT #endif PC_EXPORT const char* pcShared(void); |