2009-09-12 10:09:59 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
2010-05-03 14:08:02 +00:00
|
|
|
* Copyright (C) 2002-2010 PCSX2 Dev Team
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-09-12 10:09:59 +00:00
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
2009-02-09 21:15:56 +00:00
|
|
|
*
|
2009-09-12 10:09:59 +00:00
|
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
2009-02-09 21:15:56 +00:00
|
|
|
*
|
2009-09-12 10:09:59 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
2009-02-09 21:15:56 +00:00
|
|
|
*/
|
|
|
|
|
2021-09-01 20:31:46 +00:00
|
|
|
#pragma once
|
2022-05-05 14:22:26 +00:00
|
|
|
|
2021-09-01 20:31:46 +00:00
|
|
|
#ifdef _WIN32
|
2022-05-05 14:22:26 +00:00
|
|
|
|
|
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#endif
|
|
|
|
#ifndef NOMINMAX
|
|
|
|
#define NOMINMAX
|
|
|
|
#endif
|
|
|
|
|
2022-05-18 13:27:23 +00:00
|
|
|
// Win8.1 is our minimum at the moment.
|
|
|
|
#define _WIN32_WINNT 0x0603 // Windows 8.1
|
|
|
|
|
2009-02-09 21:15:56 +00:00
|
|
|
#include <windows.h>
|
2021-09-01 20:31:46 +00:00
|
|
|
#include <VersionHelpers.h>
|
|
|
|
#include <ShTypes.h>
|
|
|
|
#include <timeapi.h>
|
2022-05-19 14:46:33 +00:00
|
|
|
#include <tchar.h>
|
2022-05-05 14:22:26 +00:00
|
|
|
|
2021-09-01 20:31:46 +00:00
|
|
|
#endif
|