2011-05-27 01:16:58 +04:00
|
|
|
|
|
|
|
#ifndef shared2_h
|
|
|
|
#define shared2_h
|
|
|
|
|
|
|
|
#ifdef WIN32
|
2016-05-16 17:34:04 +03:00
|
|
|
#ifdef shared2_EXPORTS
|
|
|
|
#define SHARED2_EXPORT __declspec(dllexport)
|
2011-05-27 01:16:58 +04:00
|
|
|
#else
|
2016-05-16 17:34:04 +03:00
|
|
|
#define SHARED2_EXPORT __declspec(dllimport)
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define SHARED2_EXPORT
|
2011-05-27 01:16:58 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void SHARED2_EXPORT shared2();
|
|
|
|
|
|
|
|
#endif
|