2022-01-21 18:57:10 +00:00
|
|
|
/**
|
|
|
|
* BUTLERSAURUS 2022 addition
|
|
|
|
*
|
|
|
|
* This header defines a cross-platform EXPORT macro in order to allow us to
|
|
|
|
* build this reference implementation as a library.
|
|
|
|
*/
|
2022-01-22 17:50:22 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-01-21 18:57:10 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define EXPORT __declspec(dllexport)
|
2022-01-25 23:01:41 +00:00
|
|
|
#else
|
2022-01-21 18:57:10 +00:00
|
|
|
#define EXPORT __attribute__((visibility("default")))
|
|
|
|
#endif
|