CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/Common/CommonWindows.h
Views: 1401
1
#pragma once
2
3
#ifdef _WIN32
4
#pragma warning(disable:4091)
5
6
#ifndef WIN32_LEAN_AND_MEAN
7
#define WIN32_LEAN_AND_MEAN
8
#endif
9
#ifndef NOMINMAX
10
#define NOMINMAX
11
#endif
12
13
#include <Windows.h>
14
15
#undef min
16
#undef max
17
#undef DrawText
18
#endif
19
20