ddnet/src/base/dynamic.h
def 3be8a592e5 Run clang-format
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
2020-09-26 21:50:15 +02:00

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