home *** CD-ROM | disk | FTP | other *** search
- #include "window.h"
-
- main()
- {
- WindowInitializeSystem();
- MoveCursor(1,1,0);
- VideoWriterString("Press a key to hide the cursor",1,1);
- GET_KEY();
- HideCursor();
- VideoWriterString("Press a key to change cursor to a block",2,1);
- GET_KEY();
- BlockCursor();
- VideoWriterString("Press a key to change cursor to a thin cursor",3,1);
- GET_KEY();
- ThinCursor();
- }