| Line 31... |
Line 31... |
| 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, uint32_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_release(const char* path, struct fuse_file_info* fi);
|
37 |
int emcorefs_release(const char* path, struct fuse_file_info* fi);
|
| 37 |
int emcorefs_mkdir(const char* path, mode_t mode);
|
38 |
int emcorefs_mkdir(const char* path, mode_t mode);
|
| 38 |
int emcorefs_rmdir(const char* path);
|
39 |
int emcorefs_rmdir(const char* path);
|
| 39 |
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);
|
| 40 |
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);
|
| 41 |
int emcorefs_unlink(const char* path);
|
42 |
int emcorefs_unlink(const char* path);
|
| - |
|
43 |
int emcorefs_rename(const char* path, const char* new_path);
|
| - |
|
44 |
int emcorefs_truncate(const char* path, off_t size);
|
| - |
|
45 |
int emcorefs_ftruncate(const char* path, off_t size, struct fuse_file_info* fi);
|
| 42 |
|
46 |
|
| 43 |
#endif /* __FUSE_H__ */
|
47 |
#endif /* __FUSE_H__ */
|