1
0
Fork 0
mirror of https://github.com/eliboa/TegraRcmGUI.git synced 2024-09-20 05:53:36 +01:00
TegraRcmGUI/Win32Def.h
2018-05-11 00:39:24 +02:00

33 lines
430 B
C++

#pragma once
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#ifndef NOMINMAX
#define NOMINMAX
#endif
#include <SDKDDKVer.h>
#ifdef _WIN32_WINNT
#undef _WIN32_WINNT
#endif
#define _WIN32_WINNT _WIN32_WINNT_WIN7
#ifdef WINVER
#undef WINVER
#endif
#define WINVER _WIN32_WINNT
#include <windows.h>
#include <string>
#ifdef UNICODE
typedef std::wstring WinString;
#else
typedef std::string WinString;
#endif