include: move POINTER_* flags from inputstr.h to input.h

Given they're just numeric constants, they should be included in
input.h, not inputstr.h.
This commit is contained in:
Daniel Stone 2006-10-23 02:50:53 +03:00 committed by Daniel Stone
parent 4dd91c45ab
commit bf4df9b73f
2 changed files with 4 additions and 4 deletions

View File

@ -59,6 +59,10 @@ SOFTWARE.
#define DEVICE_OFF 2
#define DEVICE_CLOSE 3
#define POINTER_RELATIVE (1 << 1)
#define POINTER_ABSOLUTE (1 << 2)
#define POINTER_ACCELERATE (1 << 3)
#define MAP_LENGTH 256
#define DOWN_LENGTH 32 /* 256/8 => number of bytes to hold 256 bits */
#define NullGrab ((GrabPtr)NULL)

View File

@ -62,10 +62,6 @@ SOFTWARE.
#define EMASKSIZE MAX_DEVICES
#define POINTER_RELATIVE (1 << 1)
#define POINTER_ABSOLUTE (1 << 2)
#define POINTER_ACCELERATE (1 << 3)
extern int CoreDevicePrivatesIndex, CoreDevicePrivatesGeneration;
/* Kludge: OtherClients and InputClients must be compatible, see code */