vcpkg/toolsrc/include/pch.h
2017-03-10 17:04:29 -08:00

44 lines
699 B
C++

#pragma once
#define WIN32_LEAN_AND_MEAN
#define NOMINMAX
#include <Windows.h>
#include <shellapi.h>
#include <Shlobj.h>
#include <winhttp.h>
#include <process.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>