mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
3be8a592e5
Purely automatic change. In case of conflict with this change, apply the other change and rerun the formatting to restore it: $ python scripts/fix_style.py
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
|