vcpkg/toolsrc/include/pch.h

43 lines
678 B
C
Raw Normal View History

2017-01-28 04:49:09 +08:00
#pragma once
#define WIN32_LEAN_AND_MEAN
#define NOMINMAX
#include <Windows.h>
#include <shellapi.h>
#include <Shlobj.h>
#include <winhttp.h>
#include <cassert>
2017-01-28 06:33:54 +08:00
#include <stdexcept>
#include <system_error>
2017-01-28 04:49:09 +08:00
2017-01-28 06:33:54 +08:00
#include <array>
#include <vector>
2017-01-28 04:49:09 +08:00
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
2017-01-28 06:33:54 +08:00
#include <string>
2017-01-28 04:49:09 +08:00
#include <regex>
2017-01-28 06:33:54 +08:00
2017-01-28 06:37:14 +08:00
#include <filesystem>
2017-01-28 06:33:54 +08:00
#include <iostream>
#include <fstream>
#include <memory>
2017-01-28 04:49:09 +08:00
#include <iomanip>
2017-01-28 06:33:54 +08:00
#include <algorithm>
#include <functional>
2017-01-28 04:49:09 +08:00
#include <iterator>
#include <utility>
2017-01-28 06:33:54 +08:00
#include <cstdarg>
#include <codecvt>
#include <cctype>
2017-01-28 06:37:14 +08:00
#include <cstdint>
2017-01-28 04:49:09 +08:00
2017-01-28 06:33:54 +08:00
#include <sys/timeb.h>
#include <time.h>
2017-01-28 06:37:14 +08:00
#include <chrono>