| 522 | |
| 523 | |
| 524 | xcb_generic_event_t *xcb_poll_for_event(xcb_connection_t *conn) |
| 525 | { |
| 526 | xcb_generic_event_t *ev = NULL; |
| 527 | |
| 528 | TRY(); |
| 529 | |
| 530 | if((ev = _xcb_poll_for_event(conn)) != NULL) |
| 531 | handleXCBEvent(conn, ev); |
| 532 | |
| 533 | CATCH(); |
| 534 | |
| 535 | return ev; |
| 536 | } |
| 537 | |
| 538 | |
| 539 | xcb_generic_event_t *xcb_poll_for_queued_event(xcb_connection_t *conn) |
nothing calls this directly
no test coverage detected