| 552 | |
| 553 | |
| 554 | xcb_generic_event_t *xcb_wait_for_event(xcb_connection_t *conn) |
| 555 | { |
| 556 | xcb_generic_event_t *ev = NULL; |
| 557 | |
| 558 | TRY(); |
| 559 | |
| 560 | if((ev = _xcb_wait_for_event(conn)) != NULL) |
| 561 | handleXCBEvent(conn, ev); |
| 562 | |
| 563 | CATCH(); |
| 564 | |
| 565 | return ev; |
| 566 | } |
| 567 | |
| 568 | |
| 569 | void XSetEventQueueOwner(Display *dpy, enum XEventQueueOwner owner) |
nothing calls this directly
no test coverage detected