Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs/include
In directory usw-pr-cvs1:/tmp/cvs-serv19578/include
Modified Files:
bootsect.h volume.h
Log Message:
More fixes and updates.
Index: bootsect.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/bootsect.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -U2 -r1.10 -r1.11
--- bootsect.h 20 Apr 2002 23:09:42 -0000 1.10
+++ bootsect.h 2 Jun 2002 23:02:20 -0000 1.11
@@ -27,4 +27,5 @@
#include "types.h"
+#include "volume.h"
/**
@@ -41,4 +42,5 @@
*/
extern BOOL is_boot_sector_ntfs(const NTFS_BOOT_SECTOR *b, const BOOL silent);
+extern int parse_ntfs_boot_sector(ntfs_volume *vol, const NTFS_BOOT_SECTOR *b);
#endif /* defined BOOTSECT_H */
Index: volume.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/volume.h,v
retrieving revision 1.22
retrieving revision 1.23
diff -U2 -r1.22 -r1.23
--- volume.h 1 Jun 2002 00:41:45 -0000 1.22
+++ volume.h 2 Jun 2002 23:02:20 -0000 1.23
@@ -98,4 +98,5 @@
};
+extern ntfs_volume *ntfs_startup_volume(const char *name, unsigned long rwflag);
extern ntfs_volume *ntfs_mount(const char *name, unsigned long rwflag);
|