Changeset 69924 in vbox for trunk/include/iprt
- Timestamp:
- Dec 4, 2017 9:12:01 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119411
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/formats/ntfs.h
r69910 r69924 85 85 86 86 /** @name NTFSMFTREF_GET_IDX 87 * Gets the MFT index number from a MFT reference. */87 * Gets the MFT index number (host endian) from a MFT reference. */ 88 88 /** @name NTFSMFTREF_GET_SEQ 89 * Gets the MFT reuse sequence number from a MFT reference. */89 * Gets the MFT reuse sequence number (host endian) from a MFT reference. */ 90 90 /** @name NTFSMFTREF_SET_IDX 91 91 * Sets the MFT index number of a MFT reference. */ … … 120 120 } while (0) 121 121 #endif 122 /** Check that the reference is zero. */ 123 #define NTFSMFTREF_IS_ZERO(a_pMftRef) ((a_pMftRef)->u64 == 0) 122 124 123 125 … … 437 439 #define NTFSATSTDINFO_SIZE_NTFS_V12 (0x30) 438 440 439 /** @name NTFS_FA_XXX - NTFS file attributes .441 /** @name NTFS_FA_XXX - NTFS file attributes (host endian). 440 442 * @{ */ 441 443 #define NTFS_FA_READONLY UINT32_C(0x00000001) … … 480 482 /** 0x30: Actual size of unnamed data attribute. */ 481 483 int64_t cbData; 482 /** 0x38: File attributes . */484 /** 0x38: File attributes (NTFS_FA_XXX). */ 483 485 uint32_t fFileAttribs; 484 486 union … … 588 590 #define NTFSINDEXHDR_F_INTERNAL UINT8_C(0x01) 589 591 /** @} */ 592 593 /** Gets the pointer to the first entry header for an index. */ 594 #define NTFSINDEXHDR_GET_FIRST_ENTRY(a_pIndexHdr) \ 595 ( (PNTFSIDXENTRYHDR)((uint8_t *)(a_pIndexHdr) + RT_LE2H_U32((a_pIndexHdr)->offFirstEntry)) ) 590 596 591 597
Note:
See TracChangeset
for help on using the changeset viewer.