/*
|
|
* 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
|