Changeset 46412 in vbox for trunk/include/iprt
- Timestamp:
- Jun 6, 2013 1:46:07 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/formats/hfs.h
r46407 r46412 98 98 #define kHFSBogusExtentFileID UINT32_C(0x0000000f) 99 99 #define kHFSFirstUserCatalogNodeID UINT32_C(0x00000010) 100 /** @} */ 101 102 /** @name Catalog record types. 103 * @{ */ 104 #define kHFSFolderRecord UINT16_C(0x0100) 105 #define kHFSFileRecord UINT16_C(0x0200) 106 #define kHFSFolderThreadRecord UINT16_C(0x0300) 107 #define kHFSFileThreadRecord UINT16_C(0x0400) 108 #define kHFSPlusFolderRecord UINT16_C(0x0001) 109 #define kHFSPlusFileRecord UINT16_C(0x0002) 110 #define kHFSPlusFolderThreadRecord UINT16_C(0x0003) 111 #define kHFSPlusFileThreadRecord UINT16_C(0x0004) 112 /** @} */ 113 114 /** @name File record bits and masks. 115 * @{ */ 116 #define kHFSFileLockedBit 0 117 #define kHFSThreadExistsBit 1 118 #define kHFSHasAttributesBit 2 119 #define kHFSHasSecurityBit 3 120 #define kHFSHasFolderCountBit 4 121 #define kHFSHasLinkChainBit 5 122 #define kHFSHasChildLinkBit 6 123 #define kHFSHasDateAddedBit 7 124 125 #define kHFSFileLockedMask RT_BIT(kHFSFileLockedBit) 126 #define kHFSThreadExistsMask RT_BIT(kHFSThreadExistsBit) 127 #define kHFSHasAttributesMask RT_BIT(kHFSHasAttributesBit) 128 #define kHFSHasSecurityMask RT_BIT(kHFSHasSecurityBit) 129 #define kHFSHasFolderCountMask RT_BIT(kHFSHasFolderCountBit) 130 #define kHFSHasLinkChainMask RT_BIT(kHFSHasLinkChainBit) 131 #define kHFSHasChildLinkMask RT_BIT(kHFSHasChildLinkBit) 132 #define kHFSHasDateAddedMask RT_BIT(kHFSHasDateAddedBit) 100 133 /** @} */ 101 134
Note:
See TracChangeset
for help on using the changeset viewer.