Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs/include
In directory usw-pr-cvs1:/tmp/cvs-serv4109/include
Modified Files:
unistr.h volume.h
Log Message:
Loads of stuff. Improvements, start on attr pread and attr mst_pread. Write to follow. ntfslabel cleanup and extensions. libntfs cleanups, fixes, etc.
Index: unistr.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/unistr.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -U2 -r1.13 -r1.14
--- unistr.h 20 Apr 2002 23:09:42 -0000 1.13
+++ unistr.h 29 Apr 2002 01:53:55 -0000 1.14
@@ -57,6 +57,5 @@
extern int ntfs_ucstombs(const uchar_t *ins, const int ins_len, char **outs,
int outs_len);
-extern int ntfs_mbstoucs(const char *ins, const int ins_len, uchar_t **outs,
- int outs_len);
+extern int ntfs_mbstoucs(char *ins, uchar_t **outs, int outs_len);
#endif /* defined UNISTR_H */
Index: volume.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/volume.h,v
retrieving revision 1.20
retrieving revision 1.21
diff -U2 -r1.20 -r1.21
--- volume.h 27 Apr 2002 19:49:09 -0000 1.20
+++ volume.h 29 Apr 2002 01:53:55 -0000 1.21
@@ -90,5 +90,5 @@
extern ntfs_volume *ntfs_mount(const char *name, unsigned long rwflag);
-extern BOOL ntfs_umount(ntfs_volume *vol, const int force);
+extern int ntfs_umount(ntfs_volume *vol, const BOOL force);
#endif /* defined VOLUME_H */
|