This commit is contained in:
jeanlemotan
2024-07-02 18:12:23 +02:00
commit b344afa9fe
89 changed files with 10568 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#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