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

📄 conio.h

📁 一个操作系统的源代码
💻 H
字号:
/** conio.h                                   **                                                               ** Original Author: J Spencer Seidel                          ** Date: 10.16.99      **  ** Description: ** Prototypes and defines for dbg_print functions      **                                        ** Revision History:  ** First version      ** ** 0.0.1 10.16.99 J Spencer Seidel ** 0.0.2 12.22.99 Guido de Jong ** ** This program is free software, you can redistribute it and/or ** modify it under the terms of the GNU General Public License   ** as published by the Free Software Foundation; either version  ** 2 of the License, or (at your option) any later version.      **                                                               ** This program is distributed in the hope that it will be       ** useful, but WITHOUT ANY WARRANTY; without even the implied    ** warranty or MERCHANTABILITY or FITNESS FOR A PARTICULAR       ** PURPOSE.  See the GNU General Public License for more        ** details.                                                      **                                                               ** You should have received a copy of the GNU General Public     ** License along with this program; if not, write to the         ** Free Software Foundation, Inc., 59 Temple Place, Suite 330,   ** Boston, MA 02111-1307 USA                                     **                                                               *********************************************************Apostle OS**/#include <stdarg.h>#include <types.h>#define COL_BLACK   0x0#define COL_BLUE    0x1#define COL_GREEN   0x2#define COL_CYAN    0x3#define COL_RED     0x4#define COL_MAGENTA 0x5#define COL_BROWN   0x6#define COL_GRAY    0x7#define COL_GREY    COL_GRAYtypedef byte *byteptr;void DebugConsoleInit( byte bg, byte fg );void DebugClearScreen( void );void DebugSetBackground( byte bg );void DebugSetForeground( byte fg );void DebugSetBlink( bool setBit );void DebugSetIntensity( bool setBit );void DebugGotoXY( byte x, byte y );byte DebugGetX( void );byte DebugGetY( void );void DebugPutChar( char c );void DebugPrintF( const char *fmt, ... );

⌨️ 快捷键说明

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