2013-11-03 12:27:13 +02:00
|
|
|
|
|
|
|
#ifndef shared_h
|
|
|
|
#define shared_h
|
|
|
|
|
|
|
|
#ifdef WIN32
|
2016-07-09 11:21:54 +02:00
|
|
|
#ifdef shared_EXPORTS
|
|
|
|
#define SHARED_EXPORT __declspec(dllexport)
|
2013-11-03 12:27:13 +02:00
|
|
|
#else
|
2016-07-09 11:21:54 +02:00
|
|
|
#define SHARED_EXPORT __declspec(dllimport)
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define SHARED_EXPORT
|
2013-11-03 12:27:13 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void SHARED_EXPORT shared();
|
|
|
|
|
|
|
|
#endif
|