2019-02-25 20:35:38 +00:00
|
|
|
#ifndef WSFS_ADAPTER_JSONRPC_METHOD_INTERN_H
|
|
|
|
#define WSFS_ADAPTER_JSONRPC_METHOD_INTERN_H
|
2019-02-09 02:08:02 +00:00
|
|
|
|
2019-02-25 19:17:13 +00:00
|
|
|
#include "wsfs/adapter/jsonrpc/method.h"
|
2019-02-09 02:08:02 +00:00
|
|
|
|
|
|
|
struct wsfs_jsonrpc_method
|
|
|
|
{
|
|
|
|
struct wsfs_jsonrpc_method * next;
|
|
|
|
char * name;
|
|
|
|
wsfs_jsonrpc_method_invoke_fn * invoke;
|
|
|
|
void * user_data;
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern struct wsfs_jsonrpc_method * wsfs_jsonrpc_method_create(
|
|
|
|
char const * name,
|
|
|
|
wsfs_jsonrpc_method_invoke_fn * invoke,
|
|
|
|
void * user_data);
|
|
|
|
|
|
|
|
extern void wsfs_jsonrpc_method_dispose(
|
|
|
|
struct wsfs_jsonrpc_method * method);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|