any idea why I would be getting this error?:
error: ‘BadDevice’ was not declared in this scope
I have included:
#include <X11/Xlib.h>
and
#include <X11/extensions/XInput2.h>
in my class header file.
I am using it like this:
int ret = XIGrabDevice(display_, 2, LinuxInputManager::getWindow(),
CurrentTime, None, GrabModeAsync,
GrabModeAsync, False, &eventMask_);
if (ret == BadValue)
std::cout << "bad value" << std::endl;
else if (ret == BadDevice)
std::cout << "BadDevice" << std::endl;
if (ret == BadMatch)
std::cout << "BadMatch" << std::endl;
if (ret == BadWindow)
std::cout << "BadWindow" << std::endl;
if (ret) {
std::cout << "not available 3" << std::endl;
}
Cheers
Jarrett
BadDevice, presumably anenum– John Dibling Dec 6 '12 at 16:42XIGrabDevice, which is defined inX11/extensions/XInput2.h(ala linux.die.net/man/3/xigrabdevice). Do I need to define these by myself?? If so, what values to I assign to them? – Jarrett Dec 6 '12 at 17:14int BadDeviceErrCode; BadDevice(display_, BadDeviceErrCode); if (ret == BadDeviceErrCode) {}after including X11/extensions/Xinput.h (though the error isn't actually generated by any function in libxi as far as I can tell). – user786653 Dec 8 '12 at 12:13