home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frostbyte's 1980s DOS Shareware Collection
/
floppyshareware.zip
/
floppyshareware
/
GLEN
/
MC20.ZIP
/
CONSOLE.H
< prev
next >
Wrap
C/C++ Source or Header
|
1990-08-20
|
1KB
|
37 lines
/*
* 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