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

📄 _msgbox.h

📁 dos 1.0 其中包含quick basic源代码、内存管理himem emm386 发展历史
💻 H
字号:
/*
	COW : Character Oriented Windows

	_msgbox.h : message box private structures
*/


#define	mbMin		1		/* one based request #s */

typedef struct _mbi
	{
	char *	sz;
	WORD	cch;
	RX	rx;
	} MBI;		/* Message Box Info */

#define imbiMax	3		/* 3 lines max */

typedef struct _mbs
	{
	char *  szTitle;		/* dialog title (NULL if none) */
	WORD	mbSimple;		/* MB_CAPTION and MB_BEEP removed */
#ifdef	HELP_BUTTON
	WORD	fNoHelp;		/* MB_NOHELP bit set */
#endif	// HELP_BUTTON
	WORD	imbiMac;		/* # of strings */
	WORD	cchMac;			/* max width of text */
	MBI	rgmbi[imbiMax];		/* string details */
	} MBS;		/* message box state */


/* height overhead of a message box */
#ifdef DIALOG_LINE
#define	dayMsgBox	5
#else
#define	dayMsgBox	4
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -