mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-02-03 12:31:15 +00:00
21 lines
355 B
C
21 lines
355 B
C
#ifndef LEGO1_EXPORT_H
|
|
#define LEGO1_EXPORT_H
|
|
|
|
#ifdef LEGO1_STATIC
|
|
#define LEGO1_EXPORT
|
|
#elif defined(LEGO1_DLL)
|
|
#ifdef _WIN32
|
|
#define LEGO1_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define LEGO1_EXPORT __attribute__((visibility("default")))
|
|
#endif
|
|
#else
|
|
#ifdef _WIN32
|
|
#define LEGO1_EXPORT __declspec(dllimport)
|
|
#else
|
|
#define LEGO1_EXPORT
|
|
#endif
|
|
#endif
|
|
|
|
#endif
|