10 lines
192 B
C
10 lines
192 B
C
#pragma once
|
|
|
|
#ifdef _MSC_VER
|
|
#define EXPORT __declspec(dllexport)
|
|
#define DECL __cdecl
|
|
#else
|
|
#define EXPORT __attribute__((dllexport))
|
|
#define DECL __attribute__((__cdecl__))
|
|
#endif
|