Kemena3D
Loading...
Searching...
No Matches
kexport.h
Go to the documentation of this file.
1
10#pragma once
11
12// Detect Windows
13#if defined(_WIN32) || defined(__CYGWIN__)
14 #if defined(KEMENA3D_SHARED)
25 #define KEMENA3D_API __declspec(dllexport)
26 #elif defined(KEMENA3D_IMPORT)
27 #define KEMENA3D_API __declspec(dllimport)
28 #else
29 #define KEMENA3D_API
30 #endif
31#else
32 #if defined(KEMENA3D_SHARED) || defined(KEMENA3D_IMPORT)
33 #define KEMENA3D_API __attribute__((visibility("default")))
34 #else
35 #define KEMENA3D_API
36 #endif
37#endif