This commit is contained in:
jeanlemotan
2024-07-02 18:06:33 +02:00
commit 8297b0b45f
157 changed files with 24865 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#pragma once
#include "tl/platform.h"
#include "tl/toolchain.h"
//////////////////////////////////////////////////////////////////////////
#if defined TL_BUILD_SHARED_LIB
#if defined TL_TOOLCHAIN_MSC
# define TL_API __declspec(dllexport)
#else
# define TL_API
#endif
#elif defined TL_USE_SHARED_LIB
#if defined TL_TOOLCHAIN_MSC
# define TL_API __declspec(dllimport)
#else
# define TL_API
#endif //
#else
# define TL_API
#endif
//////////////////////////////////////////////////////////////////////////