1xcb_xvmc_query_version(3)        XCB Requests        xcb_xvmc_query_version(3)
2
3
4

NAME

6       xcb_xvmc_query_version -
7

SYNOPSIS

9       #include <xcb/xvmc.h>
10
11   Request function
12       xcb_xvmc_query_version_cookie_t
13              xcb_xvmc_query_version(xcb_connection_t *conn,
14
15   Reply datastructure
16       typedef struct xcb_xvmc_query_version_reply_t {
17           uint8_t  response_type;
18           uint8_t  pad0;
19           uint16_t sequence;
20           uint32_t length;
21           uint32_t major;
22           uint32_t minor;
23       } xcb_xvmc_query_version_reply_t;
24
25   Reply function
26       xcb_xvmc_query_version_reply_t
27              *xcb_xvmc_query_version_reply(xcb_connection_t *conn,
28              xcb_xvmc_query_version_cookie_t cookie,
29              xcb_generic_error_t **e);
30

REQUEST ARGUMENTS

32       conn      The XCB connection to X11.
33

REPLY FIELDS

35       response_type
36                 The type of this reply, in this case XCB_XVMC_QUERY_VERSION.
37                 This field is also present in the xcb_generic_reply_t and can
38                 be used to tell replies apart from each other.
39
40       sequence  The sequence number of the last request processed by the X11
41                 server.
42
43       length    The length of the reply, in words (a word is 4 bytes).
44
45       major     TODO: NOT YET DOCUMENTED.
46
47       minor     TODO: NOT YET DOCUMENTED.
48

DESCRIPTION

RETURN VALUE

51       Returns an xcb_xvmc_query_version_cookie_t. Errors have to be handled
52       when calling the reply function xcb_xvmc_query_version_reply.
53
54       If you want to handle errors in the event loop instead, use
55       xcb_xvmc_query_version_unchecked. See xcb-requests(3) for details.
56

ERRORS

58       This request does never generate any errors.
59

SEE ALSO

AUTHOR

62       Generated from xvmc.xml. Contact xcb@lists.freedesktop.org for correcā€
63       tions and improvements.
64
65
66
67X Version 11                      libxcb 1.12        xcb_xvmc_query_version(3)
Impressum