mirror of https://github.com/0intro/wmii
25 lines
347 B
C
25 lines
347 B
C
/* Copyright ©2010 Kris Maglione <maglione.k at Gmail>
|
|
* See LICENSE file for license details.
|
|
*/
|
|
#include <ixp.h>
|
|
#include "event.h"
|
|
|
|
void
|
|
event_preselect(IxpServer *s) {
|
|
USED(s);
|
|
event_check();
|
|
XFlush(display);
|
|
}
|
|
|
|
void
|
|
event_fdready(IxpConn *c) {
|
|
USED(c);
|
|
event_check();
|
|
}
|
|
|
|
void
|
|
event_fdclosed(IxpConn *c) {
|
|
|
|
c->srv->running = false;
|
|
}
|