sysincl.h
来自「Virtual Floppy Driver」· C头文件 代码 · 共 36 行
H
36 行
/*
sysincl.h
Virtual Floppy Disk drive control panel system headers
Copyright (C) 2003 Kenji Kato
*/
#ifndef _SYSINCL_H_
#define _SYSINCL_H_
/* Definitions to make maximum compatibility */
#define WINVER 0x0400
#define _WIN32_WINNT 0x0400
#define _WIN32_IE 0x0200
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <commdlg.h>
#pragma warning(push, 3)
#include <commctrl.h>
#include <objbase.h>
#include <shellapi.h>
#include <shlobj.h>
#pragma warning(pop)
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
#include <stdio.h>
#include <stdarg.h>
#endif /* _SYSINCL_H_ */
/* End of File */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?