14 lines
303 B
C
14 lines
303 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.
|
|
*/
|
|
#pragma once
|
|
|
|
#ifdef _WIN32
|
|
#define EXPORT __declspec(dllexport)
|
|
#else
|
|
#define EXPORT __attribute__((visibility("default")))
|
|
#endif
|