| 773 | |
| 774 | |
| 775 | Bool XCheckTypedEvent(Display *dpy, int event_type, XEvent *xe) |
| 776 | { |
| 777 | Bool retval = 0; |
| 778 | TRY(); |
| 779 | |
| 780 | if((retval = _XCheckTypedEvent(dpy, event_type, xe)) == True) |
| 781 | handleEvent(dpy, xe); |
| 782 | |
| 783 | CATCH(); |
| 784 | return retval; |
| 785 | } |
| 786 | |
| 787 | |
| 788 | Bool XCheckTypedWindowEvent(Display *dpy, Window win, int event_type, |
nothing calls this directly
no test coverage detected