1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2026-03-02 04:09:18 +00:00

added unit tests for close operation (adapter)

This commit is contained in:
Falk Werner
2020-04-04 08:55:59 +02:00
parent 77a870b9b7
commit 289264e269
11 changed files with 112 additions and 12 deletions

View File

@@ -0,0 +1,20 @@
#ifndef WF_ADAPTER_IMPL_OPERATION_CLOSE_H
#define WF_ADAPTER_IMPL_OPERATION_CLOSE_H
#include "webfuse/adapter/impl/fuse_wrapper.h"
#ifdef __cplusplus
extern "C"
{
#endif
extern void wf_impl_operation_close(
fuse_req_t request,
fuse_ino_t inode,
struct fuse_file_info * file_info);
#ifdef __cplusplus
}
#endif
#endif