~ctwm/ctwm/trunk

648.1.1 by Matthew Fuller
Extract the funcs relating to shutting down ctwm ('restart' is a kind
1
/*
2
 * Shutdown (and restart) bits
3
 */
4
#ifndef _CTWM_SHUTDOWN_H
5
#define _CTWM_SHUTDOWN_H
6
648.1.18 by Matthew Fuller
Rename these restore-config funcs so the names are a little less
7
void RestoreWinConfig(TwmWindow *tmp);
648.1.19 by Matthew Fuller
Done() -> DoShutdown(). Imperative form is more descriptive, and it's
8
void DoShutdown(void) __attribute__((noreturn));
648.1.22 by Matthew Fuller
GC unnecessary comment.
9
void DoRestart(Time t);
648.1.1 by Matthew Fuller
Extract the funcs relating to shutting down ctwm ('restart' is a kind
10
11
12
#endif /* _CTWM_SHUTDOWN_H */