mirror of
https://github.com/quizhizhe/LiteLoaderBDS-1.16.40.git
synced 2025-06-01 11:43:41 +00:00
20 lines
376 B
C++
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
|