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
32#elif defined(__GNUC__) && !defined(__clang__)
33#define DLLExport __attribute__((visibility("default")))
35#define EXTERN_IMPORT extern
48#define UNUSED_ARG(x) (void)x;
54#if (defined(__GNUC__) || defined(__clang__))
55#define DEPRECATED(func) func __attribute__((deprecated))
56#elif defined(_MSC_VER)
57#define DEPRECATED(func) __declspec(deprecated) func
59#pragma message("WARNING: You need to implement DEPRECATED for this compiler")
60#define DEPRECATED(func) func