mirror of
https://github.com/0intro/wmii
synced 2024-11-29 17:13:11 +03:00
11 lines
241 B
C
11 lines
241 B
C
/* Copyright ©2007-2010 Kris Maglione <maglione.k at Gmail>
|
|
* See LICENSE file for license details.
|
|
*/
|
|
#include "x11.h"
|
|
|
|
void
|
|
sendevent(Window *w, bool propegate, long mask, void *e) {
|
|
XSendEvent(display, w->xid, propegate, mask, e);
|
|
}
|
|
|