diff options
author | Julien Cristau <jcristau@debian.org> | 2008-04-30 14:37:03 +0200 |
---|---|---|
committer | Julien Cristau <jcristau@debian.org> | 2008-04-30 14:37:03 +0200 |
commit | 2c094e502060be530a306fe7f8feed6eddf9266f (patch) | |
tree | c91ab0ec1478d7eadae95a0a378e2cdb97d2f590 | |
parent | bbf726ad95e75c844046968a00e1340cbbe6bd8a (diff) |
Handle XExtension{Keyboard,Pointer}, added in inputproto 1.4
-rw-r--r-- | xdpyinfo.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1014,6 +1014,16 @@ print_xinput_info(Display *dpy, char *extname) case IsXExtensionDevice: printf("XExtensionDevice]\n"); break; +#ifdef IsXExtensionKeyboard + case IsXExtensionKeyboard: + printf("XExtensionKeyboard]\n"); + break; +#endif +#ifdef IsXExtensionPointer + case IsXExtensionPointer: + printf("XExtensionPointer]\n"); + break; +#endif default: printf("invalid value]\n"); break; |