1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00
falk-werner_webfuse/lib/webfuse/impl/operation/open.h

29 lines
493 B
C
Raw Normal View History

2020-04-04 06:32:26 +00:00
#ifndef WF_ADAPTER_IMPL_OPERATION_OPEN_H
#define WF_ADAPTER_IMPL_OPERATION_OPEN_H
2020-06-28 13:51:34 +00:00
#include "webfuse/impl/fuse_wrapper.h"
2020-04-04 06:32:26 +00:00
#ifdef __cplusplus
extern "C"
{
#endif
struct wf_jsonrpc_error;
struct wf_json;
2020-04-04 06:32:26 +00:00
extern void wf_impl_operation_open(
fuse_req_t request,
fuse_ino_t inode,
struct fuse_file_info * file_info);
extern void wf_impl_operation_open_finished(
void * user_data,
struct wf_json const * result,
struct wf_jsonrpc_error const * error);
2020-04-04 06:32:26 +00:00
#ifdef __cplusplus
}
#endif
#endif