home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / cursor / cursor.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-18  |  340 b   |  25 lines

  1. #ifndef __CURSOR_H_
  2. #define __CURSOR_H_
  3.  
  4. #define    NORMALCURSOR    0x0707
  5. #define    NOCURSOR        0x2000
  6. #define    BLOCKCURSOR        0x0007
  7.  
  8. #ifdef __cplusplus
  9. extern "C"    {
  10. #endif
  11.  
  12. void    eeol();
  13. int        wherex();
  14. int        wherey();
  15. void    gotoxy(int x, int y);
  16. void    showcursor(int type);
  17. int        getcursor();
  18.  
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22.  
  23. #endif
  24.  
  25.