Loading...
Searching...
No Matches
6 #define LIGHTWEIGHT_NO_EXPORT __attribute__((visibility("hidden")))
7 #define LIGHTWEIGHT_EXPORT __attribute__((visibility("default")))
8 #define LIGHTWEIGHT_IMPORT
9 #define LIGHTWEIGHT_FORCE_INLINE __attribute__((always_inline))
10#elif defined(_MSC_VER)
11 #define LIGHTWEIGHT_NO_EXPORT
12 #define LIGHTWEIGHT_EXPORT __declspec(dllexport)
13 #define LIGHTWEIGHT_IMPORT __declspec(dllimport)
14 #define LIGHTWEIGHT_FORCE_INLINE __forceinline
17#if defined(LIGHTWEIGHT_SHARED)
18 #if defined(BUILD_LIGHTWEIGHT)
19 #define LIGHTWEIGHT_API LIGHTWEIGHT_EXPORT
21 #define LIGHTWEIGHT_API LIGHTWEIGHT_IMPORT
24 #define LIGHTWEIGHT_API