home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / w / wgt3_ex.zip / WGT01.C < prev    next >
C/C++ Source or Header  |  1992-09-08  |  383b  |  19 lines

  1. #include <conio.h>
  2. #include <wgt.h>
  3.  
  4. /*   WORDUP Graphics Toolkit   Version 3.0
  5.      Demonstration program 1
  6.  
  7. Simply starts the graphics mode (320x200x256), draws a line, gets a key, 
  8. returns to text mode, and exits.
  9. */
  10.  
  11. void main(void)
  12. {
  13. vga256();        // initializes system
  14.  
  15. wsetcolor(15);
  16. wline(0,0,319,199);
  17. getch();
  18. textmode(C80);        // used to return to text mode
  19. }