⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sysincl.h

📁 Virtual Floppy Driver
💻 H
字号:
/*
	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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -