2013-05-02 08:19:06 +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)
|
2013-05-02 08:19:06 +04:00
|
|
|
#else
|
2016-05-16 17:34:04 +03:00
|
|
|
#define SHARED_EXPORT __declspec(dllimport)
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define SHARED_EXPORT
|
2013-05-02 08:19:06 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void SHARED_EXPORT shared();
|
|
|
|
|
|
|
|
#endif
|