| 12345678910111213141516171819202122232425 | 
#ifndef WEBSOCKCALLBACKS_H_INCLUDED#define WEBSOCKCALLBACKS_H_INCLUDED#include "civetweb.h"#ifdef __cplusplusextern "C" {#endifvoid websock_init_lib(void);void websock_exit_lib(void);void websock_send_broadcast(const char * data, int data_len);void websocket_ready_handler(struct mg_connection *conn);int websocket_data_handler(struct mg_connection *conn, int flags, char *data, size_t data_len);void connection_close_handler(struct mg_connection *conn);#ifdef __cplusplus}#endif#endif
 |