| 786 | |
| 787 | |
| 788 | Bool XCheckTypedWindowEvent(Display *dpy, Window win, int event_type, |
| 789 | XEvent *xe) |
| 790 | { |
| 791 | Bool retval = 0; |
| 792 | TRY(); |
| 793 | |
| 794 | if((retval = _XCheckTypedWindowEvent(dpy, win, event_type, xe)) == True) |
| 795 | handleEvent(dpy, xe); |
| 796 | |
| 797 | CATCH(); |
| 798 | return retval; |
| 799 | } |
| 800 | |
| 801 | |
| 802 | Bool XCheckWindowEvent(Display *dpy, Window win, long event_mask, XEvent *xe) |
nothing calls this directly
no test coverage detected