19 lines
484 B
C
19 lines
484 B
C
#ifndef XNSERVICEGENSERVER_GLOBAL_H
|
|
#define XNSERVICEGENSERVER_GLOBAL_H
|
|
|
|
#if defined(_WIN32)
|
|
# if defined(XNSERVICEGENSERVER_LIBRARY)
|
|
# define XNSERVICEGENSERVER_EXPORT __declspec(dllexport)
|
|
# else
|
|
# define XNSERVICEGENSERVER_EXPORT __declspec(dllimport)
|
|
# endif
|
|
#else
|
|
# if defined(XNSERVICEGENSERVER_LIBRARY)
|
|
# define XNSERVICEGENSERVER_EXPORT __attribute__((visibility("default")))
|
|
# else
|
|
# define XNSERVICEGENSERVER_EXPORT
|
|
# endif
|
|
#endif
|
|
|
|
#endif // XNSERVICEGENSERVER_GLOBAL_H
|