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

46 lines
807 B
C
Raw Normal View History

#ifndef WSFS_FILESYSTEM_H
#define WSFS_FILESYSTEM_H
2019-02-09 02:08:02 +00:00
#ifndef __cplusplus
#include <stdbool.h>
#endif
#include "wsfs/fuse_wrapper.h"
#include "wsfs/operations.h"
2019-02-09 02:08:02 +00:00
struct wsfs_jsonrpc_server;
struct wsfs_filesystem
{
struct fuse_args args;
struct fuse_session * session;
struct fuse_buf buffer;
struct wsfs_operations_context user_data;
};
2019-02-09 02:08:02 +00:00
#ifdef __cplusplus
extern "C"
{
#endif
extern bool wsfs_filesystem_init(
struct wsfs_filesystem * filesystem,
2019-02-09 02:08:02 +00:00
struct wsfs_jsonrpc_server * rpc,
char * mount_point);
extern void wsfs_filesystem_cleanup(
struct wsfs_filesystem * filesystem);
extern int wsfs_filesystem_get_fd(
struct wsfs_filesystem * filesystem);
extern void wsfs_filesystem_process_request(
struct wsfs_filesystem * filesystem);
2019-02-09 02:08:02 +00:00
#ifdef __cplusplus
}
#endif
#endif