mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
19 lines
231 B
C
19 lines
231 B
C
#pragma once
|
|
|
|
#ifdef _WIN32
|
|
#pragma warning(disable:4091)
|
|
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#endif
|
|
#ifndef NOMINMAX
|
|
#define NOMINMAX
|
|
#endif
|
|
|
|
#include <Windows.h>
|
|
|
|
#undef min
|
|
#undef max
|
|
#undef DrawText
|
|
#endif
|