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

#include "WinPreConfig.hpp"

#ifdef CRU_PLATFORM_WINDOWS
#ifdef CRU_WIN_EXPORT_API
#define CRU_WIN_API __declspec(dllexport)
#else
#define CRU_WIN_API __declspec(dllimport)
#endif
#else
#define CRU_WIN_API
#endif