blob: 76c7ee71f2048044090a69beab59506c90c9f413 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#ifdef CRU_IS_DLL
#ifdef CRU_TOML_EXPORT_API
#define CRU_TOML_API __declspec(dllexport)
#else
#define CRU_TOML_API __declspec(dllimport)
#endif
#else
#define CRU_TOML_API
#endif
|