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

#ifdef CRU_IS_DLL
#ifdef CRU_PLATFORM_EXPORT_API
#define CRU_PLATFORM_API __declspec(dllexport)
#else
#define CRU_PLATFORM_API __declspec(dllimport)
#endif
#else
#define CRU_PLATFORM_API
#endif