2020-04-04 21:16:25 +00:00
|
|
|
#ifndef WF_ADAPTER_IMPL_OPERATION_CONTEXT_H
|
|
|
|
#define WF_ADAPTER_IMPL_OPERATION_CONTEXT_H
|
2019-01-27 02:45:03 +00:00
|
|
|
|
2020-06-28 13:51:34 +00:00
|
|
|
#include "webfuse/impl/fuse_wrapper.h"
|
2019-01-27 02:45:03 +00:00
|
|
|
|
2019-03-26 14:35:33 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2020-03-01 15:55:58 +00:00
|
|
|
struct wf_jsonrpc_proxy;
|
2019-02-02 08:37:18 +00:00
|
|
|
|
2020-04-04 21:27:34 +00:00
|
|
|
struct wf_impl_operation_context
|
2019-02-02 13:49:42 +00:00
|
|
|
{
|
2020-06-12 20:53:42 +00:00
|
|
|
struct wf_jsonrpc_proxy * proxy;
|
2019-02-02 13:49:42 +00:00
|
|
|
double timeout;
|
2019-04-17 20:51:16 +00:00
|
|
|
char * name;
|
2019-02-02 13:49:42 +00:00
|
|
|
};
|
|
|
|
|
2020-04-04 21:27:34 +00:00
|
|
|
extern struct wf_jsonrpc_proxy * wf_impl_operation_context_get_proxy(
|
|
|
|
struct wf_impl_operation_context * context);
|
2019-04-01 20:15:12 +00:00
|
|
|
|
2019-01-30 21:28:50 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2019-01-29 22:11:46 +00:00
|
|
|
|
2019-01-27 02:45:03 +00:00
|
|
|
#endif
|
|
|
|
|