mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 11:38:19 +00:00
15 lines
270 B
C
15 lines
270 B
C
|
#ifndef BASE_DYNAMIC_H
|
||
|
#define BASE_DYNAMIC_H
|
||
|
|
||
|
#include "detect.h"
|
||
|
|
||
|
#ifdef CONF_FAMILY_WINDOWS
|
||
|
#define DYNAMIC_EXPORT __declspec(dllexport)
|
||
|
#define DYNAMIC_IMPORT __declspec(dllimport)
|
||
|
#else
|
||
|
#define DYNAMIC_EXPORT
|
||
|
#define DYNAMIC_IMPORT
|
||
|
#endif
|
||
|
|
||
|
#endif // BASE_DYNAMIC_H
|