mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-16 11:25:46 -04:00
dep: Add rapidyaml
This commit is contained in:
18
dep/rapidyaml/include/c4/export.hpp
Normal file
18
dep/rapidyaml/include/c4/export.hpp
Normal file
@ -0,0 +1,18 @@
|
||||
#ifndef C4_EXPORT_HPP_
|
||||
#define C4_EXPORT_HPP_
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifdef C4CORE_SHARED
|
||||
#ifdef C4CORE_EXPORTS
|
||||
#define C4CORE_EXPORT __declspec(dllexport)
|
||||
#else
|
||||
#define C4CORE_EXPORT __declspec(dllimport)
|
||||
#endif
|
||||
#else
|
||||
#define C4CORE_EXPORT
|
||||
#endif
|
||||
#else
|
||||
#define C4CORE_EXPORT
|
||||
#endif
|
||||
|
||||
#endif /* C4CORE_EXPORT_HPP_ */
|
Reference in New Issue
Block a user