blob: b4ff5d276c5de63892c03acc298b0fcb3a5e184f [file] [log] [blame]
Marc Kupietz44229232024-08-05 15:00:20 +02001// export.h
2
3#ifndef EXPORT_H
4#define EXPORT_H
5
6#ifdef _WIN32
7 #ifdef BUILDING_DLL
8 #define DLL_EXPORT __declspec(dllexport)
9 #else
10 #define DLL_EXPORT __declspec(dllimport)
11 #endif
12#else
13 #define DLL_EXPORT __attribute__((visibility("default")))
14#endif
15
16#endif // EXPORT_H