home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / PROGRAM / C / WINCLIP / EXAM129.C < prev    next >
C/C++ Source or Header  |  1993-12-01  |  414b  |  16 lines

  1.   #include "window.h"
  2.  
  3.   main()
  4.   {
  5.     WindowInitializeSystem();
  6.     MoveCursor(1,1,0);
  7.     VideoWriterString("Press a key to hide the cursor",1,1);
  8.     GET_KEY();
  9.     HideCursor();
  10.     VideoWriterString("Press a key to change cursor to a block",2,1);
  11.     GET_KEY();
  12.     BlockCursor();
  13.     VideoWriterString("Press a key to change cursor to a thin cursor",3,1);
  14.     GET_KEY();
  15.     ThinCursor();
  16.   }