File indexing completed on 2025-07-30 08:46:16
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef __TBB_detail__export_H
0018 #define __TBB_detail__export_H
0019
0020 #if defined(__MINGW32__)
0021 #define _EXPORT __declspec(dllexport)
0022 #elif defined(_WIN32) || defined(__unix__) || defined(__APPLE__)
0023 #define _EXPORT
0024 #else
0025 #error "Unknown platform/compiler"
0026 #endif
0027
0028 #if __TBB_BUILD
0029 #define TBB_EXPORT _EXPORT
0030 #else
0031 #define TBB_EXPORT
0032 #endif
0033
0034 #if __TBBMALLOC_BUILD
0035 #define TBBMALLOC_EXPORT _EXPORT
0036 #else
0037 #define TBBMALLOC_EXPORT
0038 #endif
0039
0040 #if __TBBBIND_BUILD
0041 #define TBBBIND_EXPORT _EXPORT
0042 #else
0043 #define TBBBIND_EXPORT
0044 #endif
0045
0046 #endif