| 848 | |
| 849 | |
| 850 | int XMaskEvent(Display *dpy, long event_mask, XEvent *xe) |
| 851 | { |
| 852 | int retval = 0; |
| 853 | TRY(); |
| 854 | |
| 855 | retval = _XMaskEvent(dpy, event_mask, xe); |
| 856 | handleEvent(dpy, xe); |
| 857 | |
| 858 | CATCH(); |
| 859 | return retval; |
| 860 | } |
| 861 | |
| 862 | |
| 863 | int XMoveResizeWindow(Display *dpy, Window win, int x, int y, |
nothing calls this directly
no test coverage detected