2009-10-04 10:30:41 +03:00
|
|
|
#ifndef pcShared_h
|
|
|
|
#define pcShared_h
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2016-07-09 11:21:54 +02:00
|
|
|
#ifdef pcShared_EXPORTS
|
|
|
|
#define PC_EXPORT __declspec(dllexport)
|
2009-10-04 10:30:41 +03:00
|
|
|
#else
|
2016-07-09 11:21:54 +02:00
|
|
|
#define PC_EXPORT __declspec(dllimport)
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define PC_EXPORT
|
2009-10-04 10:30:41 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
PC_EXPORT const char* pcShared(void);
|
|
|
|
|
|
|
|
#endif
|