mirror of
https://github.com/ksherlock/profuse.git
synced 2024-12-23 11:31:43 +00:00
52 lines
1.3 KiB
C
52 lines
1.3 KiB
C
/*
|
|
* profuse.h
|
|
* profuse
|
|
*
|
|
* Created by Kelvin Sherlock on 1/23/2009.
|
|
*
|
|
*/
|
|
|
|
#ifndef __PROFUSE_H__
|
|
#define __PROFUSE_H__
|
|
|
|
#include "File.h"
|
|
#include "Disk.h"
|
|
#include "common.h"
|
|
|
|
#define FUSE_USE_VERSION 26
|
|
|
|
#include <fuse_lowlevel.h>
|
|
|
|
|
|
#undef ERROR
|
|
#define ERROR(cond,errno) if ( (cond) ){ fuse_reply_err(req, errno); return; }
|
|
|
|
|
|
extern Disk *disk;
|
|
|
|
bool validProdosName(const char *name);
|
|
|
|
// xattr
|
|
void prodos_getxattr(fuse_req_t req, fuse_ino_t ino, const char *name, size_t size, uint32_t off);
|
|
void prodos_getxattr(fuse_req_t req, fuse_ino_t ino, const char *name, size_t size);
|
|
void prodos_listxattr(fuse_req_t req, fuse_ino_t ino, size_t size);
|
|
|
|
//dirent
|
|
void prodos_opendir(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi);
|
|
void prodos_releasedir(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi);
|
|
void prodos_readdir(fuse_req_t req, fuse_ino_t ino, size_t size, off_t off, struct fuse_file_info *fi);
|
|
|
|
// stat
|
|
void prodos_getattr(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi);
|
|
void prodos_lookup(fuse_req_t req, fuse_ino_t parent, const char *name);
|
|
|
|
// file io.
|
|
void prodos_open(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi);
|
|
void prodos_release(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi);
|
|
void prodos_read(fuse_req_t req, fuse_ino_t ino, size_t size, off_t off, struct fuse_file_info *fi);
|
|
|
|
|
|
|
|
#endif
|
|
|