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

35 lines
590 B
C
Raw Normal View History

#ifndef WFP_JSONRPC_METHOD_H
#define WFP_JSONRPC_METHOD_H
2020-03-01 15:55:58 +00:00
2020-06-16 21:39:45 +00:00
#include "webfuse_provider/impl/jsonrpc/method_invoke_fn.h"
2020-03-01 15:55:58 +00:00
#ifdef __cplusplus
extern "C"
{
#endif
struct wfp_jsonrpc_method
2020-03-01 15:55:58 +00:00
{
struct wfp_jsonrpc_method * next;
2020-03-01 15:55:58 +00:00
char * name;
wfp_jsonrpc_method_invoke_fn * invoke;
2020-03-01 15:55:58 +00:00
void * user_data;
};
extern struct wfp_jsonrpc_method *
wfp_jsonrpc_method_create(
2020-03-01 15:55:58 +00:00
char const * method_name,
wfp_jsonrpc_method_invoke_fn * invoke,
2020-03-01 15:55:58 +00:00
void * user_data);
extern void
wfp_jsonrpc_method_dispose(
struct wfp_jsonrpc_method * method);
2020-03-01 15:55:58 +00:00
#ifdef __cplusplus
}
#endif
#endif