home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume1 / 8708 / 27 / smouse.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-07-13  |  256 b   |  18 lines

  1. /*
  2.  *  Constants and definitions for the Microsoft serial mouse routines
  3.  */
  4.  
  5. #define MOUSE_DEV    "/dev/tty1"
  6. #define NCOORD        4
  7. #define NBUTTON        3
  8. #define SYSERR        (-1)
  9. #define SUCCESS        (0)
  10.  
  11. typedef struct {
  12.     int dx;
  13.     int dy;
  14.     int button[NBUTTON];
  15. } Mouse;
  16.  
  17.  
  18.