| 537 | |
| 538 | |
| 539 | xcb_generic_event_t *xcb_poll_for_queued_event(xcb_connection_t *conn) |
| 540 | { |
| 541 | xcb_generic_event_t *ev = NULL; |
| 542 | |
| 543 | TRY(); |
| 544 | |
| 545 | if((ev = _xcb_poll_for_queued_event(conn)) != NULL) |
| 546 | handleXCBEvent(conn, ev); |
| 547 | |
| 548 | CATCH(); |
| 549 | |
| 550 | return ev; |
| 551 | } |
| 552 | |
| 553 | |
| 554 | xcb_generic_event_t *xcb_wait_for_event(xcb_connection_t *conn) |
nothing calls this directly
no test coverage detected