home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
misc
/
volume1
/
8708
/
27
/
smouse.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
C/C++ Source or Header
|
1990-07-13
|
256 b
|
18 lines
/*
* Constants and definitions for the Microsoft serial mouse routines
*/
#define MOUSE_DEV "/dev/tty1"
#define NCOORD 4
#define NBUTTON 3
#define SYSERR (-1)
#define SUCCESS (0)
typedef struct {
int dx;
int dy;
int button[NBUTTON];
} Mouse;