mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
21 lines
301 B
C
21 lines
301 B
C
#ifndef WF_IMPL_JSONRPC_PROXY_FINISHED_FN_H
|
|
#define WF_IMPL_JSONRPC_PROXY_FINISHED_FN_H
|
|
|
|
#include <jansson.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
typedef void wf_jsonrpc_proxy_finished_fn(
|
|
void * user_data,
|
|
json_t const * result,
|
|
json_t const * error);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|