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.
19 lines
376 B
C++
19 lines
376 B
C++
#ifndef C4_YML_EXPORT_HPP_
|
|
#define C4_YML_EXPORT_HPP_
|
|
|
|
#ifdef _WIN32
|
|
#ifdef RYML_SHARED
|
|
#ifdef RYML_EXPORTS
|
|
#define RYML_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define RYML_EXPORT __declspec(dllimport)
|
|
#endif
|
|
#else
|
|
#define RYML_EXPORT
|
|
#endif
|
|
#else
|
|
#define RYML_EXPORT
|
|
#endif
|
|
|
|
#endif /* C4_YML_EXPORT_HPP_ */
|