LiteLoaderBDS-1.16.40/LLPreLoader/include/pch.h
2023-03-03 10:18:21 -08:00

20 lines
376 B
C++

#ifndef PCH_H
#define PCH_H
//定义导出
#ifdef VCRUNTIME140_EXPORTS
#define VCRUNTIME140_API __declspec(dllexport)
#else
#define VCRUNTIME140_API __declspec(dllimport)
#endif
#define WIN32_LEAN_AND_MEAN
#define NOMINMAX
#include <Windows.h>
#include <filesystem>
#include <fstream>
#include <iostream>
#include <new>
#include <string>
#include <vector>
#endif // PCH_H