Files
render/zassimp/include/zassimp/zassimp_lib_macro.h
T
2026-08-17 06:31:43 +09:00

18 lines
354 B
C

#ifndef ZASSIMP_LIB_MACRO_H
#define ZASSIMP_LIB_MACRO_H
#ifdef ZASSIMP_SHARED_LIB
#ifdef _WIN32
#ifdef ZASSIMP_DLL_OUTPUT
#define ZASSIMP_API __declspec(dllexport)
#else
#define ZASSIMP_API __declspec(dllimport)
#endif
#else
#define ZASSIMP_API __attribute__((visibility("default")))
#endif
#else
#define ZASSIMP_API
#endif
#endif //ZASSIMP_LIB_MACRO_H