You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
256 B
C
15 lines
256 B
C
2 years ago
|
#ifndef __EXPORT_H_
|
||
|
#define __EXPORT_H_
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
#ifdef MAKEDLL
|
||
|
# define ERKIR_EXPORT __declspec(dllexport)
|
||
|
#else
|
||
|
# define ERKIR_EXPORT __declspec(dllimport)
|
||
|
#endif
|
||
|
#else
|
||
|
#define ERKIR_EXPORT
|
||
|
#endif
|
||
|
|
||
|
#endif // __EXPORT_H_
|