Files
qt5.12.8/config.tests/xcb_glx/main.cpp
2025-08-26 22:57:23 +08:00

15 lines
464 B
C++

/* Generated by configure */
#include <xcb/glx.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_glx_query_version_cookie_t xglx_query_cookie = xcb_glx_query_version(
connection, XCB_GLX_MAJOR_VERSION, XCB_GLX_MINOR_VERSION);
xcb_glx_query_version_reply(connection, xglx_query_cookie, &error);
/* END TEST */
return 0;
}