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

📄 wndo.h

📁 nucleus 文件系统,内核和彩色图形系统,在小系统上非常好用
💻 H
字号:
/*************************************************************************/
/*                                                                       */
/*        Copyright (c) 1999 Accelerated Technology, Inc.                */
/*                                                                       */
/* PROPRIETARY RIGHTS of Accelerated Technology are involved in the      */
/* subject matter of this material.  All manufacturing, reproduction,    */
/* use, and sales rights pertaining to this subject matter are governed  */
/* by the license agreement.  The recipient of this software implicitly  */
/* accepts the terms of the license.                                     */
/*                                                                       */
/*************************************************************************/

/*************************************************************************/
/*                                                                       */
/* FILE NAME                                            VERSION          */
/*                                                                       */
/*      wndo.h                                           1.3             */
/*                                                                       */
/* COMPONENT                                                             */
/*                                                                       */
/*      All                                                              */
/*                                                                       */
/* DESCRIPTION                                                           */
/*                                                                       */
/*      This file contains the Graphics Adaptor Definitions.             */
/*                                                                       */
/* AUTHOR                                                                */
/*                                                                       */
/*      Robert G. Burrill, Accelerated Technology, Inc.                  */
/*                                                                       */
/* DATA STRUCTURES                                                       */
/*                                                                       */
/*      None                                                             */
/*                                                                       */
/* FUNCTIONS                                                             */
/*                                                                       */
/*      None                                                             */
/*                                                                       */
/* DEPENDENCIES                                                          */
/*                                                                       */
/*      None                                                             */
/*                                                                       */
/* HISTORY                                                               */
/*                                                                       */
/*         NAME            DATE                    REMARKS               */
/*                                                                       */
/*                                                                       */
/*************************************************************************/

/* Graphics Adaptor Definitions 
 Modes

 The lower two nibbles are typically device variants. */

/*=======================================*/
#define cMET		0x0000   /* Metagraphics Software Corp (reserved) */
/*=======================================*/
#define cNODEVICE		cMET+0		/* no graphics device rired */
#define cMEMORY			cMET+1		/* Conventional Memory */
#define cUSER			cMET+3		/* User defined bitmap */

/*=======================================*/
#define cLCD		0x0100   /* LCD drivers */
/*=======================================*/
#define cLCD8			cLCD+0		/* 8-bit per pixel */
#define cLCD1			cLCD+1		/* 1-bit per pixel */
#define cLCD2			cLCD+2		/* 2-bit per pixel */
#define cLCD4			cLCD+3		/* 4-bit per pixel */

/*Input device Definitions 
                      ddddcccc	where ddd = device number cccc = category */
/* mouse category */
#define cMSDRIVER		0x01	/*  Mouse driver (version 6 or newer) */
#define cMOUSYS1 		0x11	/*  Mouse sys mouse on COM1 (Interrupt C). */
#define cMOUSYS2 		0x21	/*  Mouse sys mouse on COM2 (Interrupt B). */
#define cMSMOUS1		0x31	/*  Microsoft serial mouse, COM1. */
#define cMSMOUS2		0x41	/*  Microsoft serial mouse, COM2 */
/* keyboard category */
#define cKEYBOARD		0x02	/*  Keyboard driver */
/* user defined category */
/*#define cUSER			0x03	 *//*  User defined driver */
/* joystick category */
#define cJOYSTICK		0x04	/*  joystick driver */

⌨️ 快捷键说明

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