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