Loading...
Searching...
No Matches
Go to the documentation of this file.
29#define DLLExport __declspec(dllexport)
30#define DLLImport __declspec(dllimport)
31#define EXTERN_IMPORT extern
33#define DLLExport __attribute__((visibility("default")))
35#define EXTERN_IMPORT extern
44#define UNUSED_ARG(x) (void)x;
50#if (defined(__GNUC__) || defined(__clang__))
51#define DEPRECATED(func) func __attribute__((deprecated))
52#elif defined(_MSC_VER)
53#define DEPRECATED(func) __declspec(deprecated) func
55#pragma message("WARNING: You need to implement DEPRECATED for this compiler")
56#define DEPRECATED(func) func