添加项目文件。

This commit is contained in:
Huoji's
2024-10-27 22:21:56 +08:00
parent dc2b20f38b
commit e5ad598d2a
15 changed files with 2279 additions and 0 deletions

15
framework.h Normal file
View File

@@ -0,0 +1,15 @@
// header.h: 标准系统包含文件的包含文件,
// 或特定于项目的包含文件
//
#pragma once
#include "targetver.h"
#define WIN32_LEAN_AND_MEAN // 从 Windows 头文件中排除极少使用的内容
// Windows 头文件
#include <windows.h>
// C 运行时头文件
#include <stdlib.h>
#include <malloc.h>
#include <memory.h>
#include <tchar.h>