Files
jeanlemotan 8297b0b45f First
2024-07-02 18:06:33 +02:00

24 lines
506 B
C

#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
//////////////////////////////////////////////////////////////////////////