X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Fyaffsfs.h;h=fc9bb9eb158897eec4538e835d8a650844b2fe10;hp=fc6152ceaf37e2c4751992720ff2a64c3a452868;hb=196cd2318144d4de74087e318f312c8ab6d77770;hpb=0333f489a25b05a4c0176258204eee1db9e8c9e0 diff --git a/direct/yaffsfs.h b/direct/yaffsfs.h index fc6152c..fc9bb9e 100644 --- a/direct/yaffsfs.h +++ b/direct/yaffsfs.h @@ -110,6 +110,14 @@ #define ENOSPC 28 #endif +#ifndef ERANGE +#define ERANGE 34 +#endif + +#ifndef ENODATA +#define ENODATA 61 +#endif + #ifndef ENOTEMPTY #define ENOTEMPTY 39 #endif @@ -165,6 +173,14 @@ #define S_IEXEC 0000100 #endif +#ifndef XATTR_CREATE +#define XATTR_CREATE 1 +#endif + +#ifndef XATTR_REPLACE +#define XATTR_REPLACE 2 +#endif + #ifndef R_OK #define R_OK 4 #define W_OK 2 @@ -246,6 +262,23 @@ int yaffs_stat(const YCHAR *path, struct yaffs_stat *buf) ; int yaffs_lstat(const YCHAR *path, struct yaffs_stat *buf) ; int yaffs_fstat(int fd, struct yaffs_stat *buf) ; +int yaffs_setxattr(const char *path, const char *name, const void *data, int size, int flags); +int yaffs_lsetxattr(const char *path, const char *name, const void *data, int size, int flags); +int yaffs_fsetxattr(int fd, const char *name, const void *data, int size, int flags); + +int yaffs_getxattr(const char *path, const char *name, void *data, int size); +int yaffs_lgetxattr(const char *path, const char *name, void *data, int size); +int yaffs_fgetxattr(int fd, const char *name, void *data, int size); + +int yaffs_removexattr(const char *path, const char *name); +int yaffs_lremovexattr(const char *path, const char *name); +int yaffs_fremovexattr(int fd, const char *name); + +int yaffs_listxattr(const char *path, char *list, int size); +int yaffs_llistxattr(const char *path, char *list, int size); +int yaffs_flistxattr(int fd, char *list, int size); + + #ifdef CONFIG_YAFFS_WINCE int yaffs_set_wince_times(int fd, const unsigned *wctime, const unsigned *watime, const unsigned *wmtime); @@ -285,7 +318,7 @@ loff_t yaffs_totalspace(const YCHAR *path); int yaffs_inodecount(const YCHAR *path); -void yaffs_initialise(yaffsfs_DeviceConfiguration *configList); + int yaffs_StartUp(void);