vcpkg/toolsrc/include/pch.h

39 lines
694 B
C
Raw Normal View History

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