home *** CD-ROM | disk | FTP | other *** search
- #ifndef __CURSOR_H_
- #define __CURSOR_H_
-
- #define NORMALCURSOR 0x0707
- #define NOCURSOR 0x2000
- #define BLOCKCURSOR 0x0007
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- void eeol();
- int wherex();
- int wherey();
- void gotoxy(int x, int y);
- void showcursor(int type);
- int getcursor();
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
-
-