X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Fyaffsfs.h;h=6dd2c943f731a60d19a2162a4eac01e3f749e95b;hp=7961dff71ced4719bea2f5ed28bd9d40a0f970dd;hb=4d923d08d0a230185dc3f1ca443cc241a4fdf735;hpb=4a700fe570d217c2c5df87070db7c2652bc0eaaf diff --git a/direct/yaffsfs.h b/direct/yaffsfs.h index 7961dff..6dd2c94 100644 --- a/direct/yaffsfs.h +++ b/direct/yaffsfs.h @@ -76,6 +76,7 @@ struct yaffs_stat{ }; int yaffs_open(const YCHAR *path, int oflag, int mode) ; + int yaffs_close(int fd) ; int yaffs_fsync(int fd) ; int yaffs_fdatasync(int fd) ; @@ -158,12 +159,26 @@ loff_t yaffs_totalspace(const YCHAR *path); int yaffs_inodecount(const YCHAR *path); +int yaffs_n_handles(const YCHAR *path); + +#define YAFFS_SHARE_READ 1 +#define YAFFS_SHARE_WRITE 2 +int yaffs_open_sharing(const YCHAR *path, int oflag, int mode, int shareMode) ; + struct yaffs_DeviceStruct; void yaffs_AddDevice(struct yaffs_DeviceStruct *dev); int yaffs_StartUp(void); +/* Function to get the last error */ +int yaffs_get_error(void); + +/* Function only for debugging */ +void * yaffs_getdev(const YCHAR *path); +int yaffs_DumpDevStruct(const YCHAR *path); + + #endif