home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
magazine
/
drdobbs
/
1991
/
08
/
ctest
/
graph.c
< prev
Wrap
Text File
|
1991-05-20
|
435b
|
43 lines
/* dummy graphics routines */
/*
#include <graph.h>
*/
void init_graphics()
{
/*
_setvideomode(_VRES16COLOR);
_clearscreen(_GCLEARSCREEN);
*/
}
void clear_screen()
{
/*
_clearscreen(_GCLEARSCREEN);
*/
}
void done_graphics()
{
/*
_setvideomode(_DEFAULTMODE);
*/
}
void moveto(int x,int y)
{
/*
_moveto(x,y);
*/
}
void lineto(int x,int y)
{
/*
_lineto(x,y);
*/
}