mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
20 lines
236 B
C
20 lines
236 B
C
|
#ifndef WF_LWS_UTILS_H
|
||
|
#define WF_LWS_UTILS_H
|
||
|
|
||
|
#include <libwebsockets.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
extern char const *
|
||
|
wf_lws_reason_tostring(
|
||
|
enum lws_callback_reasons reason);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|