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

📄 console.h

📁 编译c语言的编译器源码 含有目标程序
💻 H
字号:
/*
 * Compatibility definitions for the "CONSOLE" interface.
 *
 * The "CONSOLE" interface has been renamed to "VIDEO", and the
 * function names renamed to be consistant with the "WINDOW"
 * library (Available with registration). This header file
 * maps the "VIDEO" functions back to the "CONSOLE" names, and
 * allows previously written MICRO-C programs, which use that
 * interface to compile correctly.
 *
 * When coding a program for the first time under MICRO-C, DO NOT
 * USE THIS FILE. Learn the "VIDEO" functions, since they are now
 * standard.
 *
 * Copyright 1990 Dave Dunfield
 * All rights reserved.
 */

/* Low level CONSOLE functions */
#define	video_init	vopen
#define	chkkey		vtstc
#define	getkey		vgetc
#define	putchr		vputc
#define	clear_scr	vclscr
#define	clear_eos	vcleos
#define	clear_eol	vcleol
#define	gotoxy		vgotoxy
#define	updatexy	vupdatexy
#define	cursor_off	vcursor_off
#define	cursor_on	vcursor_line

/* High level CONSOLE functions */
#define	draw_box	vdraw_box
#define	clear_box	vclear_box

#include \mc\video.h

⌨️ 快捷键说明

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