2011-05-27 01:16:58 +04:00
|
|
|
|
|
|
|
#ifndef shared_h
|
|
|
|
#define shared_h
|
|
|
|
|
|
|
|
#ifdef WIN32
|
2016-05-16 17:34:04 +03:00
|
|
|
#ifdef shared_EXPORTS
|
|
|
|
#define SHARED_EXPORT __declspec(dllexport)
|
2011-05-27 01:16:58 +04:00
|
|
|
#else
|
2016-05-16 17:34:04 +03:00
|
|
|
#define SHARED_EXPORT __declspec(dllimport)
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define SHARED_EXPORT
|
2011-05-27 01:16:58 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void SHARED_EXPORT shared();
|
|
|
|
|
|
|
|
#endif
|