Changes by: antona
Update of /cvsroot/linux-ntfs/ntfsprogs/include/ntfs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27122/include/ntfs
Modified Files:
unistr.h volume.h
Log Message:
Megapatch!!! Check evecrything!!! I probably broke everything!!!
Index: unistr.h
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/include/ntfs/unistr.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -p -r1.6 -r1.7
--- unistr.h 22 Aug 2005 21:33:07 -0000 1.6
+++ unistr.h 24 Sep 2005 22:54:55 -0000 1.7
@@ -61,5 +61,7 @@ extern int ntfs_ucstombs(const ntfschar
int outs_len);
extern int ntfs_mbstoucs(const char *ins, ntfschar **outs, int outs_len);
+extern void ntfs_upcase_table_build(ntfschar *uc, u32 uc_len);
+
#endif /* defined _NTFS_UNISTR_H */
Index: volume.h
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/include/ntfs/volume.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -p -r1.13 -r1.14
--- volume.h 14 Aug 2005 15:44:47 -0000 1.13
+++ volume.h 24 Sep 2005 22:54:55 -0000 1.14
@@ -117,6 +117,8 @@ struct _ntfs_volume {
char *vol_name; /* Name of the volume. */
unsigned long state; /* NTFS specific flags describing this volume.
See ntfs_volume_state_bits above. */
+
+ ntfs_inode *vol_ni; /* ntfs_inode structure for FILE_Volume. */
u8 major_ver; /* Ntfs major version of volume. */
u8 minor_ver; /* Ntfs minor version of volume. */
u16 flags; /* Bit array of VOLUME_* flags. */
@@ -198,7 +200,8 @@ extern int ntfs_umount(ntfs_volume *vol,
extern int ntfs_version_is_supported(ntfs_volume *vol);
extern int ntfs_logfile_reset(ntfs_volume *vol);
-extern int ntfs_volume_set_flags(ntfs_volume *v, const u16 flags);
+
+extern int ntfs_volume_write_flags(ntfs_volume *v, const u16 flags);
#endif /* defined _NTFS_VOLUME_H */
|