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_provider/impl/jsonrpc/method.h
2020-06-16 23:57:41 +02:00

35 lines
590 B
C

#ifndef WFP_JSONRPC_METHOD_H
#define WFP_JSONRPC_METHOD_H
#include "webfuse_provider/impl/jsonrpc/method_invoke_fn.h"
#ifdef __cplusplus
extern "C"
{
#endif
struct wfp_jsonrpc_method
{
struct wfp_jsonrpc_method * next;
char * name;
wfp_jsonrpc_method_invoke_fn * invoke;
void * user_data;
};
extern struct wfp_jsonrpc_method *
wfp_jsonrpc_method_create(
char const * method_name,
wfp_jsonrpc_method_invoke_fn * invoke,
void * user_data);
extern void
wfp_jsonrpc_method_dispose(
struct wfp_jsonrpc_method * method);
#ifdef __cplusplus
}
#endif
#endif