11 lines
188 B
C
11 lines
188 B
C
#ifndef TWN_ENGINE_API_H
|
|
#define TWN_ENGINE_API_H
|
|
|
|
#if defined(__WIN32)
|
|
#define TWN_API __declspec(dllexport)
|
|
#else
|
|
#define TWN_API __attribute__((visibility("default")))
|
|
#endif
|
|
|
|
#endif
|