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