wxhelper/src/pch.h

28 lines
558 B
C
Raw Normal View History

2023-06-26 18:23:47 +08:00
#ifndef PCH_H
#define PCH_H
#define GLOG_NO_ABBREVIATED_SEVERITIES
#include <iostream>
#include <vector>
#include <map>
#include <strstream>
#include <string>
#include <optional>
#include <sstream>
#include <fstream>
#include <time.h>
#include <WinSock2.h>
#include "Windows.h"
#include "utils.h"
#include <nlohmann/json.hpp>
#include "spdlog/spdlog.h"
#include "spdlog/sinks/rotating_file_sink.h"
#include "spdlog/sinks/daily_file_sink.h"
#include "spdlog/sinks/stdout_color_sinks.h"
#include <detours/detours.h>
2023-06-28 16:35:53 +08:00
#include <heapapi.h>
2023-06-26 18:23:47 +08:00
#endif // PCH_H