summaryrefslogtreecommitdiff
path: root/src/XIQueryVersion.c
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2009-02-26 16:49:45 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2009-03-11 14:26:07 +1000
commit88fcb0938a898ef6c9f48fce2874c37e3788fe9c (patch)
treeeb112d70c3c68c2038205372f329962fd342cb46 /src/XIQueryVersion.c
parent2780363f96d07f8ca62507246bb04f6894e3b13d (diff)
Add XIQueryVersion() - query and announce the supported XI version.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'src/XIQueryVersion.c')
-rw-r--r--src/XIQueryVersion.c62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/XIQueryVersion.c b/src/XIQueryVersion.c
new file mode 100644
index 0000000..e4c632e
--- /dev/null
+++ b/src/XIQueryVersion.c
@@ -0,0 +1,62 @@
+/*
+ * Copyright © 2009 Red Hat, Inc.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ *
+ */
+
+#include <stdint.h>
+#include <X11/Xlibint.h>
+#include <X11/extensions/XI2proto.h>
+#include <X11/extensions/XInput2.h>
+#include <X11/extensions/extutil.h>
+#include "XIint.h"
+
+Status
+XIQueryVersion(Display *dpy, int *major_return, int *minor_return)
+{
+ XExtDisplayInfo *info = XInput_find_display(dpy);
+
+ LockDisplay(dpy);
+ return _xiQueryVersion(dpy, major_return, minor_return, info);
+}
+
+_X_HIDDEN Status
+_xiQueryVersion(Display * dpy, int *major, int *minor, XExtDisplayInfo *info)
+{
+ xXIQueryVersionReq *req;
+ xXIQueryVersionReply rep;
+
+ if (_XiCheckExtInit(dpy, Dont_Check, info) == -1)
+ return BadRequest;
+
+ GetReq(XIQueryVersion, req);
+ req->reqType = info->codes->major_opcode;
+ req->ReqType = X_XIQueryVersion;
+ req->major_version = *major;
+ req->minor_version = *minor;
+
+ if (!_XReply(dpy, (xReply*)&rep, 0, xTrue)) {
+ return BadImplementation;
+ }
+ *major = rep.major_version;
+ *minor = rep.minor_version;
+ return Success;
+}