mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
20 lines
246 B
C
20 lines
246 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#ifndef WIN32
|
||
|
|
#error Should not get here
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifndef _WIN32_WINNT
|
||
|
|
#define _WIN32_WINNT 0x500
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
||
|
|
#define WIN32_LEAN_AND_MEAN
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifndef NOMINMAX
|
||
|
|
#define NOMINMAX
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include "windows.h"
|