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
2020-07-16 22:36:12 +02:00

29 lines
493 B
C

#ifndef WF_ADAPTER_IMPL_OPERATION_OPEN_H
#define WF_ADAPTER_IMPL_OPERATION_OPEN_H
#include "webfuse/impl/fuse_wrapper.h"
#ifdef __cplusplus
extern "C"
{
#endif
struct wf_jsonrpc_error;
struct wf_json;
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);
#ifdef __cplusplus
}
#endif
#endif