mirror of
https://github.com/Team-Resurgent/libXexUnpack.git
synced 2026-04-30 10:11:16 -07:00
9 lines
161 B
C
9 lines
161 B
C
#pragma once
|
|
|
|
#ifdef _WIN32
|
|
#define TR_EXPORT extern "C" __declspec(dllexport)
|
|
#else
|
|
#define TR_EXPORT extern "C" __attribute__((visibility("default")))
|
|
#endif
|
|
|