1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-27 20:44:10 +00:00
falk-werner_webfuse-provider/lib/webfuse/adapter/impl/jsonrpc/method.h

32 lines
495 B
C
Raw Normal View History

2019-03-26 22:04:53 +00:00
#ifndef WF_ADAPTER_IMPL_JSONRPC_METHOD_H
#define WF_ADAPTER_IMPL_JSONRPC_METHOD_H
#ifndef __cplusplus
#include <stdbool.h>
#endif
#include <jansson.h>
2019-03-26 22:04:53 +00:00
#include "webfuse/core/status.h"
#ifdef __cplusplus
extern "C"
{
#endif
2019-03-26 22:04:53 +00:00
typedef bool wf_impl_jsonrpc_method_invoke_fn(
void * user_data,
struct json_t const * method_call);
2019-03-26 22:04:53 +00:00
typedef void wf_impl_jsonrpc_method_finished_fn(
void * user_data,
2019-03-26 22:04:53 +00:00
wf_status status,
struct json_t const * result);
#ifdef __cplusplus
}
#endif
#endif