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 >
C/C++ Source or Header  |  1992-07-17  |  476b  |  20 lines

  1. #include <conio.h>
  2. #include "c:\tc\wgt\wgt.h"
  3.  
  4. /*   WORDUP Graphics Toolkit   Version 2.1
  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.  
  12.  
  13. void main(void)
  14. {
  15. vga256();        // initializes system
  16. wsetcolor(40);        // sets drawing colour
  17. wline(0,0,319,199);    // draws a line from corner to corner
  18. getch();        // wait for a key
  19. textmode(C80);        // used to return to text mode
  20. }