2011-06-19 15:41:06 +03:00
|
|
|
|
|
|
|
#ifndef shared_h
|
|
|
|
#define shared_h
|
|
|
|
|
|
|
|
#ifdef WIN32
|
2018-08-09 18:06:22 +02:00
|
|
|
# ifdef shared_EXPORTS
|
|
|
|
# define SHARED_EXPORT __declspec(dllexport)
|
|
|
|
# else
|
|
|
|
# define SHARED_EXPORT __declspec(dllimport)
|
|
|
|
# endif
|
2011-06-19 15:41:06 +03:00
|
|
|
#else
|
2018-08-09 18:06:22 +02:00
|
|
|
# define SHARED_EXPORT
|
2011-06-19 15:41:06 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void SHARED_EXPORT shared();
|
|
|
|
|
|
|
|
#endif
|