rapidyaml  0.13.0
parse and emit YAML, and do it fast
export.hpp
Go to the documentation of this file.
1 #ifndef C4_YML_EXPORT_HPP_
2 #define C4_YML_EXPORT_HPP_
3 
4 #ifdef _WIN32
5  #ifdef RYML_SHARED
6  #ifdef RYML_EXPORTS
7  #define RYML_EXPORT __declspec(dllexport)
8  #define RYML_EXPORT_EXTERN
9  #else
10  #define RYML_EXPORT __declspec(dllimport)
11  #define RYML_EXPORT_EXTERN extern
12  #endif
13  #else
14  #define RYML_EXPORT
15  #define RYML_EXPORT_EXTERN
16  #endif
17 #else
18  #define RYML_EXPORT
19  #define RYML_EXPORT_EXTERN
20 #endif
21 
22 #endif /* C4_YML_EXPORT_HPP_ */