| 753 | static void HandleGenericEvent(XEvent* e); |
| 754 | |
| 755 | static void HandleClientMessage(XEvent* e) { |
| 756 | if (e->xclient.data.l[0] == wm_destroy) { |
| 757 | HandleWMDestroy(); |
| 758 | } else if (e->xclient.data.l[0] == net_wm_ping) { |
| 759 | HandleWMPing(e); |
| 760 | } |
| 761 | } |
| 762 | |
| 763 | static Bool FilterEvent(Display* d, XEvent* e, XPointer w) { |
| 764 | return |
no test coverage detected