| 800 | |
| 801 | |
| 802 | Bool XCheckWindowEvent(Display *dpy, Window win, long event_mask, XEvent *xe) |
| 803 | { |
| 804 | Bool retval = 0; |
| 805 | TRY(); |
| 806 | |
| 807 | if((retval = _XCheckWindowEvent(dpy, win, event_mask, xe)) == True) |
| 808 | handleEvent(dpy, xe); |
| 809 | |
| 810 | CATCH(); |
| 811 | return retval; |
| 812 | } |
| 813 | |
| 814 | |
| 815 | int XConfigureWindow(Display *dpy, Window win, unsigned int value_mask, |
nothing calls this directly
no test coverage detected