Subversion Repositories freemyipod

Rev

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

Rev 770 Rev 782
Line 24... Line 24...
24
#ifndef __FUSE_H__
24
#ifndef __FUSE_H__
25
#define __FUSE_H__
25
#define __FUSE_H__
26
 
26
 
27
#include "global.h"
27
#include "global.h"
28
 
28
 
29
 
-
 
-
 
29
int emcorefs_init(void);
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, uint32_t size, off_t offset, struct fuse_file_info* fi);
36
int emcorefs_release(const char* path, struct fuse_file_info* fi);
36
int emcorefs_release(const char* path, struct fuse_file_info* fi);
-
 
37
int emcorefs_mkdir(const char* path, mode_t mode);
-
 
38
int emcorefs_rmdir(const char* path);
-
 
39
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_unlink(const char* path);
37
 
42
 
38
#endif /* __FUSE_H__ */
43
#endif /* __FUSE_H__ */