1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-29 11:10:44 +00:00
falk-werner_webfuse-provider/lib/webfuse/adapter/impl/operation/open.h

27 lines
455 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
#include "webfuse/adapter/impl/fuse_wrapper.h"
#include <jansson.h>
#ifdef __cplusplus
extern "C"
{
#endif
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,
json_t const * result,
json_t const * error);
#ifdef __cplusplus
}
#endif
#endif