Lines Matching defs:CVolHeader
189 struct CVolHeader struct
191 Byte Header[2];
192 UInt16 Version;
197 UInt32 CTime;
198 UInt32 MTime;
202 UInt32 NumFiles;
203 UInt32 NumFolders;
204 unsigned BlockSizeLog;
205 UInt32 NumBlocks;
206 UInt32 NumFreeBlocks;
212 UInt64 GetPhySize() const { return (UInt64)NumBlocks << BlockSizeLog; } in GetPhySize()
213 UInt64 GetFreeSize() const { return (UInt64)NumFreeBlocks << BlockSizeLog; } in GetFreeSize()
214 bool IsHfsX() const { return Version > 4; } in IsHfsX()