yaffs Refactorisation first phase
[yaffs2.git] / direct / yaffsfs.h
index 18cc22ff2e525ef0e6bd8498cbd72a90f8c0db58..fc9bb9eb158897eec4538e835d8a650844b2fe10 100644 (file)
 #define ENOSPC 28
 #endif
 
+#ifndef ERANGE
+#define ERANGE 34
+#endif
+
+#ifndef ENODATA
+#define ENODATA 61
+#endif
+
 #ifndef ENOTEMPTY
 #define ENOTEMPTY 39
 #endif
 #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
@@ -247,15 +263,19 @@ 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);