diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-05-22 15:48:51 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-05-22 15:48:51 +0000 |
commit | 3b8800decdad9eecbc06d3830acd65755f850543 (patch) | |
tree | 07c8e0b4728144dd82661441db514590f3652d2a /proto/xcb-proto/src/xc_misc.xml | |
parent | b3b0dd6fd0009539e7f99ae63e0c181e241ac74e (diff) |
initial import of xcb-proto 1.4
Diffstat (limited to 'proto/xcb-proto/src/xc_misc.xml')
-rw-r--r-- | proto/xcb-proto/src/xc_misc.xml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/proto/xcb-proto/src/xc_misc.xml b/proto/xcb-proto/src/xc_misc.xml new file mode 100644 index 000000000..139ca22f0 --- /dev/null +++ b/proto/xcb-proto/src/xc_misc.xml @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +Copyright (C) 2004 Mikko Torni and Josh Triplett. +All Rights Reserved. See the file COPYING in this directory +for licensing information. +--> +<xcb header="xc_misc" extension-xname="XC-MISC" extension-name="XCMisc" + extension-multiword="true" major-version="1" minor-version="1"> + <request name="GetVersion" opcode="0"> + <field type="CARD16" name="client_major_version" /> + <field type="CARD16" name="client_minor_version" /> + <reply> + <pad bytes="1" /> + <field type="CARD16" name="server_major_version" /> + <field type="CARD16" name="server_minor_version" /> + </reply> + </request> + + <request name="GetXIDRange" opcode="1"> + <reply> + <pad bytes="1" /> + <field type="CARD32" name="start_id" /> + <field type="CARD32" name="count" /> + </reply> + </request> + + <request name="GetXIDList" opcode="2"> + <field type="CARD32" name="count" /> + <reply> + <pad bytes="1" /> + <field type="CARD32" name="ids_len" /> + <pad bytes="20" /> + <list type="CARD32" name="ids"> + <fieldref>ids_len</fieldref> + </list> + </reply> + </request> +</xcb> |