cmake/Tests/PerConfig/pcShared.h

17 lines
264 B
C
Raw Normal View History

2009-10-04 10:30:41 +03:00
#ifndef pcShared_h
#define pcShared_h
#ifdef _WIN32
2018-08-09 18:06:22 +02:00
# ifdef pcShared_EXPORTS
# define PC_EXPORT __declspec(dllexport)
# else
# define PC_EXPORT __declspec(dllimport)
# endif
2009-10-04 10:30:41 +03:00
#else
2018-08-09 18:06:22 +02:00
# define PC_EXPORT
2009-10-04 10:30:41 +03:00
#endif
PC_EXPORT const char* pcShared(void);
#endif