aboutsummaryrefslogtreecommitdiff
path: root/include/cru/toml/Base.hpp
blob: de1d558c99b477a67bb52d149fb9834aed9bf722 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#ifdef CRU_PLATFORM_WINDOWS
#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