Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs/include
In directory usw-pr-cvs1:/tmp/cvs-serv4746
Modified Files:
attrib.h logfile.h mft.h
Log Message:
Forgot a few...
Index: attrib.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/attrib.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** attrib.h 2001/03/05 02:45:35 1.13
--- attrib.h 2001/03/05 03:15:08 1.14
***************
*** 103,108 ****
/*
* The flags (32-bit) describing attribute properties in the attribute
! * definition structure. FIXME: This information is not certain and probably
! * incomplete. (AIA)
*/
typedef enum {
--- 103,111 ----
/*
* The flags (32-bit) describing attribute properties in the attribute
! * definition structure. FIXME: This information is from Regis's information
! * and according to him it is not certain and probably incomplete.
! * Empirically, it would seem that 0x40 means that it must be resident,
! * 0x01 is never encountered on NT4/W2k, 0x2 would be indexable as only
! * $FILENAME has 0x2 set and no idea what 0x80 means. (AIA)
*/
typedef enum {
***************
*** 1378,1382 ****
*/
typedef struct {
! NTFS_RECORD_HEADER; /* Magic is "INDX". */
__s64 lsn; /* $LogFile sequence number of the last
modification of this index block. */
--- 1381,1385 ----
*/
typedef struct {
! NTFS_RECORD; /* Magic is "INDX". */
__s64 lsn; /* $LogFile sequence number of the last
modification of this index block. */
***************
*** 1737,1741 ****
* to find_next_attr_in_attr_list().
*/
! extern __inline__ ATTR_RECORD_HEADER *find_first_attr_in_attr_list(
const ntfs_volume *v,
const MFT_RECORD *m,
--- 1740,1744 ----
* to find_next_attr_in_attr_list().
*/
! extern __inline__ ATTR_RECORD *find_first_attr_in_attr_list(
const ntfs_volume *v,
const MFT_RECORD *m,
***************
*** 1772,1776 ****
* @ctx = NULL. This is in fact what find_first_attr_in_attr_list() does.
*/
! ATTR_RECORD_HEADER *find_next_attr_in_attr_list(
const ntfs_volume *v,
const MFT_RECORD *m,
--- 1775,1779 ----
* @ctx = NULL. This is in fact what find_first_attr_in_attr_list() does.
*/
! ATTR_RECORD *find_next_attr_in_attr_list(
const ntfs_volume *v,
const MFT_RECORD *m,
***************
*** 1806,1811 ****
* returned, no matter what it is.
*/
! extern __inline__ ATTR_RECORD_HEADER *find_first_attr(
! const ntfs_volume *v,
const MFT_RECORD *b,
const ATTR_TYPES t,
--- 1809,1813 ----
* returned, no matter what it is.
*/
! extern __inline__ ATTR_RECORD *find_first_attr(const ntfs_volume *v,
const MFT_RECORD *b,
const ATTR_TYPES t,
***************
*** 1847,1851 ****
* returned, no matter what it is.
*/
! ATTR_RECORD_HEADER *find_next_attr(const ntfs_volume *v,
const MFT_RECORD *b,
const ATTR_TYPES t,
--- 1849,1853 ----
* returned, no matter what it is.
*/
! ATTR_RECORD *find_next_attr(const ntfs_volume *v,
const MFT_RECORD *b,
const ATTR_TYPES t,
Index: logfile.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/logfile.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** logfile.h 2001/03/02 15:03:56 1.4
--- logfile.h 2001/03/05 03:15:08 1.5
***************
*** 56,60 ****
*/
typedef struct {
! NTFS_RECORD_HEADER ntfs;/* The magic is "RSTR". */
__u64 chkdsk_lsn; /* The check disk log file sequence number for
this restart page. Only used when the
--- 56,60 ----
*/
typedef struct {
! NTFS_RECORD; /* The magic is "RSTR". */
__u64 chkdsk_lsn; /* The check disk log file sequence number for
this restart page. Only used when the
***************
*** 162,166 ****
*/
typedef struct {
! NTFS_RECORD_HEADER ntfs; /* The magic is "RCRD". */
union {
__u64 last_lsn;
--- 162,166 ----
*/
typedef struct {
! NTFS_RECORD; /* The magic is "RCRD". */
union {
__u64 last_lsn;
Index: mft.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/mft.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** mft.h 2001/03/05 02:45:35 1.7
--- mft.h 2001/03/05 03:15:08 1.8
***************
*** 143,147 ****
typedef struct {
/*Ofs*/
! /* 0*/ NTFS_RECORD_HEADER ntfs;/* Usually the magic is "FILE". */
/* 8*/ __s64 lsn; /* $LogFile sequence number for this record.
Changed every time the record is modified. */
--- 143,147 ----
typedef struct {
/*Ofs*/
! /* 0*/ NTFS_RECORD; /* Usually the magic is "FILE". */
/* 8*/ __s64 lsn; /* $LogFile sequence number for this record.
Changed every time the record is modified. */
|