summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Cristau <jcristau@debian.org>2008-04-30 14:37:03 +0200
committerJulien Cristau <jcristau@debian.org>2008-04-30 14:37:03 +0200
commit2c094e502060be530a306fe7f8feed6eddf9266f (patch)
treec91ab0ec1478d7eadae95a0a378e2cdb97d2f590
parentbbf726ad95e75c844046968a00e1340cbbe6bd8a (diff)
Handle XExtension{Keyboard,Pointer}, added in inputproto 1.4
-rw-r--r--xdpyinfo.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/xdpyinfo.c b/xdpyinfo.c
index d1dcbfb..8241686 100644
--- a/xdpyinfo.c
+++ b/xdpyinfo.c
@@ -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;