Changes by: szaka
Update of /cvsroot/linux-ntfs/linux-ntfs/include
In directory usw-pr-cvs1:/tmp/cvs-serv11567/include
Modified Files:
volume.h
Log Message:
Rewrote $LogFile reset using new inode API and moved it from ntfsfix to
libntfs as ntfs_reset_logfile(). ntfsresize also resets log file.
Index: volume.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/volume.h,v
retrieving revision 1.28
retrieving revision 1.29
diff -U2 -r1.28 -r1.29
--- volume.h 12 Jul 2002 07:10:44 -0000 1.28
+++ volume.h 12 Jul 2002 12:38:54 -0000 1.29
@@ -83,4 +83,6 @@
#define NTFS_V3_1(major, minor) ((major) == 3 && (minor) == 1)
+#define NTFS_BUF_SIZE 4096
+
/*
* ntfs_volume - structure describing an open volume in memory
@@ -146,4 +148,5 @@
extern int ntfs_is_version_supported(ntfs_volume *vol);
+extern int ntfs_reset_logfile(ntfs_volume *vol);
#endif /* defined _NTFS_VOLUME_H */
|