Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
xcb/xcb_icccm.h
✓ #include <xcb/xcb_icccm.h>
Connect to X server using XCB
#include <xcb/xcb.h>
#include "xcb/xcb_icccm.h"
#include <cstdio>
int main() {
xcb_connection_t *conn = xcb_connect(NULL, NULL);
if (xcb_connection_has_error(conn)) {
printf("Connection error\n");
return 1;
}
printf("Connected to X server\n");
xcb_disconnect(conn);
return 0;
}
Debug
Known issues
No known issues recorded.
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.