2009-08-11 17:56:02 +04:00
|
|
|
#ifndef pcShared_h
|
|
|
|
#define pcShared_h
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2016-05-16 17:34:04 +03:00
|
|
|
#ifdef pcShared_EXPORTS
|
|
|
|
#define PC_EXPORT __declspec(dllexport)
|
2009-08-11 17:56:02 +04:00
|
|
|
#else
|
2016-05-16 17:34:04 +03:00
|
|
|
#define PC_EXPORT __declspec(dllimport)
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define PC_EXPORT
|
2009-08-11 17:56:02 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
PC_EXPORT const char* pcShared(void);
|
|
|
|
|
|
|
|
#endif
|