1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-27 20:44:10 +00:00
falk-werner_webfuse-provider/include/webfuse/provider/operation/close.h

32 lines
419 B
C
Raw Normal View History

2019-03-26 22:04:53 +00:00
#ifndef WFP_OPERATION_CLOSE_H
#define WFP_OPERATION_CLOSE_H
2019-02-24 17:03:22 +00:00
#ifndef __cplusplus
#include <inttypes.h>
#else
#include <cinttypes>
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
2019-03-26 22:04:53 +00:00
#include "webfuse/provider/api.h"
2019-02-24 17:03:22 +00:00
#ifdef __cplusplus
extern "C"
{
#endif
2019-03-26 22:04:53 +00:00
typedef void wfp_close_fn(
2019-02-24 17:03:22 +00:00
ino_t inode,
uint32_t handle,
int flags,
void * user_data);
#ifdef __cplusplus
}
#endif
#endif