CatapultServer  v0.5.0.1 (Elephant)
plugins.h
Go to the documentation of this file.
1 
21 #pragma once
22 
23 #if defined(WIN32) || defined(WIN64)
24 #ifdef DLL_EXPORTS
25 #define PLUGIN_API __declspec(dllexport)
26 #else
27 #define PLUGIN_API __declspec(dllimport)
28 #endif
29 #else
30 #define PLUGIN_API __attribute__ ((visibility ("default")))
31 #endif