1
0
Fork 0
mirror of https://github.com/eliboa/TegraRcmGUI.git synced 2024-11-08 11:51:45 +00:00
TegraRcmGUI/Win32Def.h

33 lines
430 B
C
Raw Normal View History

2018-05-10 23:39:24 +01:00
#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