1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-30 14:10:45 +00:00
falk-werner_webfuse-provider/src/wsfs/operations.h

56 lines
971 B
C
Raw Normal View History

2019-01-27 02:45:03 +00:00
#ifndef _WSFS_OPERATIONS
#define _WSFS_OPERATIONS
#include "wsfs/fuse_wrapper.h"
2019-01-27 02:45:03 +00:00
2019-02-02 08:37:18 +00:00
struct wsfs_jsonrpc;
struct wsfs_operations_context
{
struct wsfs_jsonrpc * rpc;
double timeout;
};
#ifdef __cplusplus
extern "C" {
#endif
2019-02-03 18:10:05 +00:00
extern void wsfs_operation_lookup (
2019-02-02 10:45:38 +00:00
fuse_req_t req,
fuse_ino_t parent,
char const * name);
2019-02-03 18:10:05 +00:00
extern void wsfs_operation_getattr (
2019-02-02 10:45:38 +00:00
fuse_req_t request,
fuse_ino_t inode,
struct fuse_file_info *file_info);
2019-02-03 18:10:05 +00:00
extern void wsfs_operation_readdir (
2019-02-02 10:45:38 +00:00
fuse_req_t request,
fuse_ino_t inode,
size_t size,
off_t offset,
struct fuse_file_info *file_info);
2019-02-03 18:10:05 +00:00
extern void wsfs_operation_open(
2019-02-02 10:45:38 +00:00
fuse_req_t request,
fuse_ino_t inode,
struct fuse_file_info * file_info);
2019-02-03 18:10:05 +00:00
extern void wsfs_operation_close(
2019-02-02 10:45:38 +00:00
fuse_req_t request,
fuse_ino_t inode,
struct fuse_file_info * file_info);
2019-02-03 18:10:05 +00:00
extern void wsfs_operation_read(
2019-02-02 10:45:38 +00:00
fuse_req_t request,
fuse_ino_t ino, size_t size, off_t off,
struct fuse_file_info *fi);
#ifdef __cplusplus
}
#endif
2019-01-29 22:11:46 +00:00
2019-01-27 02:45:03 +00:00
#endif