14 lines
197 B
C
14 lines
197 B
C
|
|
/*
|
||
|
|
* DWN - Desktop Window Manager
|
||
|
|
* Service management
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef DWN_SERVICES_H
|
||
|
|
#define DWN_SERVICES_H
|
||
|
|
|
||
|
|
void services_init(void);
|
||
|
|
void services_run(void);
|
||
|
|
void services_cleanup(void);
|
||
|
|
|
||
|
|
#endif
|