From c598b0c3ce01d8c18db2b11d3c43a88f36cdd01c Mon Sep 17 00:00:00 2001 From: Tom Gilbert Date: Sun, 12 Dec 1999 16:01:50 +0000 Subject: [PATCH] Just some comments to explain stuff better. SVN revision: 1597 --- api/epplet.h.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/api/epplet.h.in b/api/epplet.h.in index 8d49d02..fb973fc 100644 --- a/api/epplet.h.in +++ b/api/epplet.h.in @@ -186,7 +186,9 @@ void Epplet_register_event_handler(void (*func) void Epplet_register_comms_handler(void (*func) (void *data, char *s), void *data); -/* call func when a window is closed by the wm */ +/* call func when a window is closed by the wm. This func must return a + * value. Return 1 and the window will be destroyed for you, return 0 and it + * will not */ void Epplet_register_delete_event_handler(int (*func) (void *data, Window win), void *data);