diff options
| author | Dana Jansens <danakj@orodu.net> | 2008-01-16 18:44:22 -0500 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2008-01-16 18:44:22 -0500 |
| commit | 299687110d478a4928932f72031c345b27a01840 (patch) | |
| tree | ed47a7e191e7310db45478566b1bb8958777a70e /openbox/ping.h | |
| parent | 2ee4251092a70af6a7c1826aaef01506dfcbf556 (diff) | |
use hash tables in ping.[ch] instead of a list. we're pinging every window, not just windows youre trying to close, so don't use datastructures that suck with lots of windows..
Diffstat (limited to 'openbox/ping.h')
| -rw-r--r-- | openbox/ping.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/openbox/ping.h b/openbox/ping.h index 9f5c157b..1333ea0f 100644 --- a/openbox/ping.h +++ b/openbox/ping.h @@ -33,6 +33,9 @@ struct _ObClient; */ typedef void (*ObPingEventHandler) (struct _ObClient *c, gboolean dead); +void ping_startup(gboolean reconfigure); +void ping_shutdown(gboolean reconfigure); + void ping_start(struct _ObClient *c, ObPingEventHandler h); void ping_stop(struct _ObClient *c); |
