Tatooine
dllexport.h
Go to the documentation of this file.
1#ifndef DLL_API
2#ifdef __linux__
3#define DLL_API
4#elif _WIN32
5#ifdef DLL_EXPORT
6#define DLL_API __declspec(dllexport)
7#else
8#define DLL_API __declspec(dllimport)
9#endif
10#else
11#endif
12#endif