home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / 2DBUMP.ZIP / MOUSE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-03  |  247 b   |  20 lines

  1. #ifndef _MOUSE_H_
  2. #define _MOUSE_H_
  3.  
  4. #define MOUSE_DIVIDE    2
  5. struct mouse_info
  6. {
  7.    unsigned short x,y,button;
  8. };
  9.  
  10. void mouse_on();
  11. void mouse_off();
  12. void setx(int,int);
  13. void sety(int,int);
  14. mouse_info get_m_info();
  15.  
  16.  
  17.  
  18. #endif
  19.  
  20.