home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / bc4lib / mouse.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-08  |  302 b   |  27 lines

  1.  
  2.  
  3.  
  4.  
  5. extern int hasmouse;
  6.  
  7.  
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11.  
  12.  
  13. void resetmouse(void);
  14. int mousebutton(void);
  15. void nobutton(void);
  16. void showmouse(void);
  17. void hidemouse(void);
  18. void getmouse(int *x,int *y,int *b);
  19. void putmouse(int x,int y);
  20.  
  21.  
  22.  
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26.  
  27.