aboutsummaryrefslogtreecommitdiff
path: root/include/cru/common/platform/win/WinPreConfig.hpp
blob: ac3978205ea125643a54edc2ba27a85891fc56a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once
#include "../../PreConfig.hpp"
#ifdef CRU_PLATFORM_WINDOWS

#define NOMINMAX
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>
#undef CreateWindow
#undef DrawText
#undef CreateFont
#undef CreateEvent

#endif