kaydaradef.h Source File
Go to the documentation of this file. 1 #ifndef _K_KAYDARADEF_H
2 #define _K_KAYDARADEF_H
40 #include <karch/arch.h>
42 #if defined(_MSC_VER) || (defined(__GNUC__) && defined(_WIN32))
44 #define K_DLLIMPORT __declspec()
45 #define K_DLLEXPORT __declspec()
47 #define K_DLLIMPORT __declspec(dllimport)
48 #define K_DLLEXPORT __declspec(dllexport)
50 #define K_DLLNO_IMPORT_EXPORT __declspec()
51 #elif defined(__MACH__)
53 #define K_DLLEXPORT __attribute__ ((visibility("default")))
54 #define K_DLLNO_IMPORT_EXPORT
58 #define K_DLLNO_IMPORT_EXPORT
61 #endif // _K_KAYDARADEF_H