home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / p / pmouse11.zip / MOUSE.H < prev    next >
C/C++ Source or Header  |  1993-01-30  |  433b  |  23 lines

  1. /* Mouse Shit v1.0 */
  2.  
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6.  
  7. #define SHOW 1
  8. #define HIDE 2
  9.  
  10. int  Init_mouse(void);
  11. void Mouse(int);
  12. void Move_mouse(int, int);
  13. void Get_mouse(int*, int*, int*);
  14. void Limit_mouse(int, int, int, int);
  15. void PixelsPer_mouse(int, int);
  16. void PressData_mouse(int*, int*, int*);
  17. void ReleaseData_mouse(int*, int*, int*);
  18. void Change_mouse(int*, int, int);
  19.  
  20. #ifdef __cplusplus
  21. }
  22. #endif
  23.