mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 18:18:18 +00:00
16 lines
271 B
C
16 lines
271 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
|