15 lines
236 B
C
15 lines
236 B
C
|
|
/*
|
||
|
|
* DWN - Desktop Window Manager
|
||
|
|
* retoor <retoor@molodetz.nl>
|
||
|
|
* XDG Autostart support
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef DWN_AUTOSTART_H
|
||
|
|
#define DWN_AUTOSTART_H
|
||
|
|
|
||
|
|
void autostart_init(void);
|
||
|
|
void autostart_run(void);
|
||
|
|
void autostart_cleanup(void);
|
||
|
|
|
||
|
|
#endif
|