home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of Shareware - Software Farm 2
/
wosw_2.zip
/
wosw_2
/
CPROG
/
WGT_TC21.ZIP
/
WGT01.C
< prev
next >
Wrap
C/C++ Source or Header
|
1992-07-17
|
476b
|
20 lines
#include <conio.h>
#include "c:\tc\wgt\wgt.h"
/* WORDUP Graphics Toolkit Version 2.1
Demonstration program 1
Simply starts the graphics mode (320x200x256), draws a line, gets a key,
returns to text mode, and exits.
*/
void main(void)
{
vga256(); // initializes system
wsetcolor(40); // sets drawing colour
wline(0,0,319,199); // draws a line from corner to corner
getch(); // wait for a key
textmode(C80); // used to return to text mode
}