17 lines
245 B
C
17 lines
245 B
C
|
|
/*
|
||
|
|
* DWN - Desktop Window Manager
|
||
|
|
* WebSocket API
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef DWN_API_H
|
||
|
|
#define DWN_API_H
|
||
|
|
|
||
|
|
#include <stdbool.h>
|
||
|
|
|
||
|
|
void api_init(void);
|
||
|
|
void api_process(void);
|
||
|
|
void api_cleanup(void);
|
||
|
|
void api_handle_json_command(const char *json_str);
|
||
|
|
|
||
|
|
#endif
|