Last active
December 11, 2015 21:39
-
-
Save yasar11732/4664401 to your computer and use it in GitHub Desktop.
I am getting XI_BadDevice no matter what I set device id to.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <X11/Xlib.h> | |
#include <X11/extensions/XInput2.h> | |
#include <signal.h> | |
int main() { | |
Display *dpy = XOpenDisplay(NULL); | |
/* XInput Extension available? */ | |
int opcode, event, error; | |
if (!XQueryExtension(dpy, "XInputExtension", &opcode, &event, &error)) { | |
printf("X Input extension not available.\n"); | |
return -1; | |
} | |
/* Which version of XI2? We support 2.0 */ | |
int major = 2, minor = 1; | |
if (XIQueryVersion(dpy, &major, &minor) == BadRequest) { | |
printf("XI2 not available. Server supports %d.%d\n", major, minor); | |
return -1; | |
} | |
XIEventMask eventmask; | |
unsigned char mask[1] = { 0 }; /* the actual mask */ | |
eventmask.deviceid = 2; | |
eventmask.mask_len = sizeof(mask); /* always in bytes */ | |
eventmask.mask = mask; | |
/* now set the mask */ | |
XISetMask(mask, XI_RawButtonPress); | |
/* select on the window */ | |
XISelectEvents(dpy, DefaultRootWindow(dpy), &eventmask, 1); | |
while(1) { | |
XEvent ev; | |
XNextEvent(dpy, &ev); | |
if (ev.xcookie.type == GenericEvent && | |
ev.xcookie.extension == opcode && | |
XGetEventData(dpy, &ev.xcookie)) | |
{ | |
switch(ev.xcookie.evtype) | |
{ | |
case XI_RawButtonPress: | |
printf("RawButtonPress"); | |
break; | |
} | |
} | |
XFreeEventData(dpy, &ev.xcookie); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
X Error of failed request: XI_BadDevice (invalid Device parameter)
Major opcode of failed request: 131 (XInputExtension)
Minor opcode of failed request: 46 ()
Device id in failed request: 0xad
Serial number of failed request: 13
Current serial number in output stream: 13