mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
32 lines
603 B
C
32 lines
603 B
C
#ifndef WSFS_ADAPTER_JSONRPC_METHOD_INTERN_H
|
|
#define WSFS_ADAPTER_JSONRPC_METHOD_INTERN_H
|
|
|
|
#include "wsfs/adapter/jsonrpc/method.h"
|
|
|
|
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
|