12 lines
289 B
C
12 lines
289 B
C
|
/**
|
||
|
* BUTLERSAURUS 2022 addition
|
||
|
*
|
||
|
* This header defines a cross-platform EXPORT macro in order to allow us to
|
||
|
* build this reference implementation as a library.
|
||
|
*/
|
||
|
#ifdef _WIN32
|
||
|
#define EXPORT __declspec(dllexport)
|
||
|
#else
|
||
|
#define EXPORT __attribute__((visibility("default")))
|
||
|
#endif
|