15 lines
490 B
C++
15 lines
490 B
C++
/* Generated by configure */
|
|
#include <xcb/xinput.h>
|
|
int main(int argc, char **argv)
|
|
{
|
|
(void)argc; (void)argv;
|
|
/* BEGIN TEST: */
|
|
xcb_connection_t *connection = 0;
|
|
xcb_generic_error_t *error = 0;
|
|
xcb_input_xi_query_version_cookie_t xinput_query_cookie = xcb_input_xi_query_version(
|
|
connection, XCB_INPUT_MAJOR_VERSION, XCB_INPUT_MINOR_VERSION);
|
|
xcb_input_xi_query_version_reply(connection, xinput_query_cookie, &error);
|
|
/* END TEST */
|
|
return 0;
|
|
}
|