inicpp
C++ parser of INI files with schema validation.
dll.h
1 #ifndef INICPP_DLL_H
2 #define INICPP_DLL_H
3 
4 
5 #ifdef INICPP_DLL
6 #ifdef INICPP_EXPORT
7 #define INICPP_API __declspec(dllexport)
8 #else
9 #define INICPP_API __declspec(dllimport)
10 #endif
11 #else
12 #define INICPP_API
13 #endif
14 
15 
16 // Disable unwanted and not necessary MSVC++ warnings
17 #ifdef _MSC_VER
18 #pragma warning(disable:4800)
19 #pragma warning(disable:4251)
20 #endif
21 
22 
23 #endif // INICPP_DLL_H