2020-11-02 06:08:10 +01:00
|
|
|
// pch.h: This is a precompiled header file.
|
|
|
|
// Files listed below are compiled only once, improving build performance for future builds.
|
|
|
|
// This also affects IntelliSense performance, including code completion and many code browsing features.
|
|
|
|
// However, files listed here are ALL re-compiled if any one of them is updated between builds.
|
|
|
|
// Do not add files here that you will be updating frequently as this negates the performance advantage.
|
|
|
|
|
|
|
|
#ifndef PCH_H
|
|
|
|
#define PCH_H
|
|
|
|
|
|
|
|
// add headers that you want to pre-compile here
|
|
|
|
#pragma comment(lib, "Version.lib")
|
2020-11-17 20:11:33 +01:00
|
|
|
#pragma comment(lib, "Wininet.lib")
|
2020-11-02 06:08:10 +01:00
|
|
|
|
2020-11-17 20:11:33 +01:00
|
|
|
#include <cstdint>
|
2020-11-02 06:08:10 +01:00
|
|
|
#include "framework.h"
|
2020-11-17 20:11:33 +01:00
|
|
|
#include <fstream>
|
2020-11-02 06:08:10 +01:00
|
|
|
#include <iomanip>
|
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
2020-11-17 20:11:33 +01:00
|
|
|
#include <stdint.h>
|
2020-11-02 06:08:10 +01:00
|
|
|
#include <tchar.h>
|
2020-11-17 20:11:33 +01:00
|
|
|
#include <thread>
|
|
|
|
#include <vector>
|
|
|
|
#include <WinInet.h>
|
2020-11-28 11:38:16 +01:00
|
|
|
#include <regex>
|
2020-11-02 06:08:10 +01:00
|
|
|
|
|
|
|
#endif //PCH_H
|