Loading...
Searching...
No Matches
Go to the documentation of this file.
12#if defined _WIN32 || defined __CYGWIN__
13 #define KIT_DLL_IMPORT __declspec(dllimport)
14 #define KIT_DLL_EXPORT __declspec(dllexport)
17 #define KIT_DLL_IMPORT __attribute__ ((visibility ("default")))
18 #define KIT_DLL_EXPORT __attribute__ ((visibility ("default")))
19 #define KIT_DLL_LOCAL __attribute__ ((visibility ("hidden")))
23 #ifdef KIT_DLL_EXPORTS
24 #define KIT_API KIT_DLL_EXPORT
26 #define KIT_API KIT_DLL_IMPORT
28 #define KIT_LOCAL KIT_DLL_LOCAL