framework.h 377 B

123456789101112131415
  1. // header.h: 标准系统包含文件的包含文件,
  2. // 或特定于项目的包含文件
  3. //
  4. #pragma once
  5. #include "targetver.h"
  6. #define WIN32_LEAN_AND_MEAN // 从 Windows 头文件中排除极少使用的内容
  7. // Windows 头文件
  8. #include <windows.h>
  9. // C 运行时头文件
  10. #include <stdlib.h>
  11. #include <malloc.h>
  12. #include <memory.h>
  13. #include <tchar.h>