2013-05-01 22:19:06 -06:00
|
|
|
|
|
|
|
#ifndef shared_h
|
|
|
|
#define shared_h
|
|
|
|
|
|
|
|
#ifdef WIN32
|
2016-05-16 10:34:04 -04:00
|
|
|
#ifdef shared_EXPORTS
|
|
|
|
#define SHARED_EXPORT __declspec(dllexport)
|
2013-05-01 22:19:06 -06:00
|
|
|
#else
|
2016-05-16 10:34:04 -04:00
|
|
|
#define SHARED_EXPORT __declspec(dllimport)
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define SHARED_EXPORT
|
2013-05-01 22:19:06 -06:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void SHARED_EXPORT shared();
|
|
|
|
|
|
|
|
#endif
|