mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-07-17 07:10:40 +00:00
21 lines
328 B
C
21 lines
328 B
C
#pragma once
|
|
|
|
#ifndef RMLUI_DISABLE_INCLUDE_WINDOWS
|
|
|
|
#if !defined _WIN32_WINNT || _WIN32_WINNT < 0x0601
|
|
#undef _WIN32_WINNT
|
|
// Target Windows 7
|
|
#define _WIN32_WINNT 0x0601
|
|
#endif
|
|
|
|
#define UNICODE
|
|
#define _UNICODE
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#ifndef NOMINMAX
|
|
#define NOMINMAX
|
|
#endif
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|