blob: 3ebfc6a7b18ef428e6ecc36275542138e1d04655 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
// Windows Vista is the lowest version we support
#define _WIN32_WINNT 0x0600
#define NOMINMAX // Don't include windows min/max definitions
#include <tchar.h>
#include <windows.h>
|