aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/pch.h
blob: 56f24f161c4704134db83f973520a58eb47af7cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#pragma once

#define WIN32_LEAN_AND_MEAN
#define NOMINMAX
#include <Windows.h>
#include <shellapi.h>
#include <Shlobj.h>
#include <winhttp.h>

#include <cassert>
#include <stdexcept>
#include <system_error>

#include <array>
#include <vector>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>

#include <string>
#include <regex>

#include <filesystem>
#include <iostream>
#include <fstream>
#include <memory>
#include <iomanip>

#include <algorithm>
#include <functional>
#include <iterator>
#include <utility>

#include <cstdarg>
#include <codecvt>
#include <cctype>
#include <cstdint>

#include <sys/timeb.h>
#include <time.h>
#include <chrono>