SRSDK  0.10.39
Loading...
Searching...
No Matches
api.h
Go to the documentation of this file.
1#pragma once
2
4#include "leia/common/config.h"
5
6#ifdef LEIA_COMMON_EXPORTS
7# define LEIA_COMMON_API LEIA_EXPORT
8# define LEIA_COMMON_CLASS_API LEIA_CLASS_EXPORT
9#else
10# ifdef LEIA_COMMON_STATIC
11# define LEIA_COMMON_API
12# define LEIA_COMMON_CLASS_API
13# else
14# define LEIA_COMMON_API LEIA_IMPORT
15# define LEIA_COMMON_CLASS_API LEIA_CLASS_IMPORT
16# endif
17#endif
18
19#ifdef LEIA_PRIVATE_EXPORTS
20# define LEIA_PRIVATE_API LEIA_COMMON_API
21#else
22# define LEIA_PRIVATE_API
23#endif