17 lines
245 B
C
Raw Normal View History

2026-01-08 23:58:19 +01:00
/*
* 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