Lightweight 0.1.0
Loading...
Searching...
No Matches
Api.hpp
1// SPDX-License-Identifier: Apache-2.0
2
3#pragma once
4
5#if defined(__GNUC__)
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
15#endif
16
17#if defined(LIGHTWEIGHT_SHARED)
18 #if defined(BUILD_LIGHTWEIGHT)
19 #define LIGHTWEIGHT_API LIGHTWEIGHT_EXPORT
20 #else
21 #define LIGHTWEIGHT_API LIGHTWEIGHT_IMPORT
22 #endif
23#else
24 #define LIGHTWEIGHT_API /*!*/
25#endif