WINGs: Add support for syslog messaging
[wmaker-crm.git] / WINGs / misc.c
blobf5a8c91c1aad17c5b31eff5983179aae0a3deba0
2 /* Miscelaneous helper functions */
4 #include "WINGsP.h"
6 #include "error.h"
8 WMRange wmkrange(int start, int count)
10 WMRange range;
12 range.position = start;
13 range.count = count;
15 return range;
19 * wutil_shutdown - cleanup in WUtil when user program wants to exit
21 void wutil_shutdown(void)
23 #ifdef HAVE_SYSLOG
24 w_syslog_close();
25 #endif