Compare commits
1 Commits
master
...
submit/une
Author | SHA1 | Date | |
---|---|---|---|
|
ca5e3c4c56 |
|
@ -59,6 +59,7 @@ SOFTWARE.
|
|||
#include <X11/extensions/geproto.h>
|
||||
|
||||
#include "dix/dix_priv.h"
|
||||
#include "dix/input_priv.h"
|
||||
#include "dix/exevents_priv.h"
|
||||
|
||||
#include "inputstr.h"
|
||||
|
|
|
@ -364,4 +364,6 @@ int InputThreadRegisterDev(int fd,
|
|||
|
||||
int InputThreadUnregisterDev(int fd);
|
||||
|
||||
void AssignTypeAndName(DeviceIntPtr dev, Atom type, const char *name);
|
||||
|
||||
#endif /* _XSERVER_INPUT_PRIV_H */
|
||||
|
|
|
@ -33,6 +33,7 @@ from The Open Group.
|
|||
#include <X11/Xos.h>
|
||||
#include <X11/keysym.h>
|
||||
|
||||
#include "dix/input_priv.h"
|
||||
#include "mi/mi_priv.h"
|
||||
|
||||
#include "scrnintstr.h"
|
||||
|
|
|
@ -56,10 +56,6 @@ SOFTWARE.
|
|||
#include "cursorstr.h"
|
||||
#include "privates.h"
|
||||
|
||||
extern _X_EXPORT void AssignTypeAndName(DeviceIntPtr dev,
|
||||
Atom type,
|
||||
const char *name);
|
||||
|
||||
#define BitIsOn(ptr, bit) (!!(((const BYTE *) (ptr))[(bit)>>3] & (1 << ((bit) & 7))))
|
||||
#define SetBit(ptr, bit) (((BYTE *) (ptr))[(bit)>>3] |= (1 << ((bit) & 7)))
|
||||
#define ClearBit(ptr, bit) (((BYTE *)(ptr))[(bit)>>3] &= ~(1 << ((bit) & 7)))
|
||||
|
|
Loading…
Reference in New Issue