24 lines
343 B
C
24 lines
343 B
C
#pragma once
|
|
|
|
#include "tl/platform.h"
|
|
|
|
#if defined FS_BUILD_SHARED_LIB
|
|
|
|
#if defined TL_TOOLCHAIN_MSC
|
|
# define FS_API __declspec(dllexport)
|
|
#else
|
|
# define FS_API
|
|
#endif
|
|
|
|
#elif defined FS_USE_SHARED_LIB
|
|
|
|
#if defined TL_TOOLCHAIN_MSC
|
|
# define FS_API __declspec(dllimport)
|
|
#else
|
|
# define FS_API
|
|
#endif //
|
|
|
|
#else
|
|
# define FS_API
|
|
#endif
|