Changes by: flatcap
Update of /cvsroot/linux-ntfs/linux-ntfs/include
In directory usw-pr-cvs1:/tmp/cvs-serv1868/include
Modified Files:
inode.h runlist.h
Log Message:
new function headers and a few function moves
Index: inode.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/inode.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -U2 -r1.12 -r1.13
--- inode.h 11 Jul 2002 16:20:32 -0000 1.12
+++ inode.h 11 Jul 2002 23:44:13 -0000 1.13
@@ -101,4 +101,6 @@
};
+extern ntfs_inode *allocate_ntfs_inode(ntfs_volume *vol);
+
extern ntfs_inode *ntfs_open_inode(ntfs_volume *vol, const MFT_REF mref);
Index: runlist.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/runlist.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -U2 -r1.3 -r1.4
--- runlist.h 11 Jul 2002 16:20:33 -0000 1.3
+++ runlist.h 11 Jul 2002 23:44:13 -0000 1.4
@@ -28,5 +28,5 @@
#include "types.h"
-/* In memory vcn to lcn mapping array. */
+/* Forward declarations */
typedef struct _run_list_element run_list_element;
typedef run_list_element run_list;
@@ -35,5 +35,5 @@
#include "volume.h"
-/**
+/*
* run_list_element - in memory vcn to lcn mapping array element
* @vcn: starting vcn of the current array element
|