Subversion Repositories freemyipod

Rev

Rev 784 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 784 Rev 785
Line 30... Line 30...
30
int emcorefs_getattr(const char* path, struct stat* stbuf);
30
int emcorefs_getattr(const char* path, struct stat* stbuf);
31
int emcorefs_opendir(const char* path, struct fuse_file_info* fi);
31
int emcorefs_opendir(const char* path, struct fuse_file_info* fi);
32
int emcorefs_readdir(const char* path, void* buf, fuse_fill_dir_t filler, off_t offset, struct fuse_file_info* fi);
32
int emcorefs_readdir(const char* path, void* buf, fuse_fill_dir_t filler, off_t offset, struct fuse_file_info* fi);
33
int emcorefs_releasedir(const char* path, struct fuse_file_info* fi);
33
int emcorefs_releasedir(const char* path, struct fuse_file_info* fi);
34
int emcorefs_open(const char* path, struct fuse_file_info* fi);
34
int emcorefs_open(const char* path, struct fuse_file_info* fi);
35
int emcorefs_read(const char* path, char* buf, uint32_t size, off_t offset, struct fuse_file_info* fi);
35
int emcorefs_read(const char* path, char* buf, size_t size, off_t offset, struct fuse_file_info* fi);
36
int emcorefs_write(const char* path, const char* buf, uint32_t size, off_t offset, struct fuse_file_info* fi);
36
int emcorefs_write(const char* path, const char* buf, size_t size, off_t offset, struct fuse_file_info* fi);
37
int emcorefs_release(const char* path, struct fuse_file_info* fi);
37
int emcorefs_release(const char* path, struct fuse_file_info* fi);
38
int emcorefs_mkdir(const char* path, mode_t mode);
38
int emcorefs_mkdir(const char* path, mode_t mode);
39
int emcorefs_rmdir(const char* path);
39
int emcorefs_rmdir(const char* path);
40
int emcorefs_create(const char* path, mode_t mode, struct fuse_file_info* fi);
40
int emcorefs_create(const char* path, mode_t mode, struct fuse_file_info* fi);
41
int emcorefs_mknod(const char* path, mode_t mode, dev_t dev);
41
int emcorefs_mknod(const char* path, mode_t mode, dev_t dev);