Changeset 33534 in vbox
- Timestamp:
- Oct 28, 2010 7:32:14 AM (14 years ago)
- Location:
- trunk/src/VBox/Devices/Storage
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DMGHDDCore.cpp
r33524 r33534 112 112 uint32_t au32Unknown[3]; /**< 0x1f4 - Unknown stuff, hdiutil doesn't dump it... */ 113 113 } DMGUDIF; 114 #pragma pack( 0)114 #pragma pack() 115 115 AssertCompileSize(DMGUDIF, 512); 116 116 AssertCompileMemberOffset(DMGUDIF, cbRsrc, 0x030); … … 169 169 uint32_t cBlocksRunCount; /**< 0x - Number of entries in the blkx run table afterwards. */ 170 170 } DMGBLKX; 171 #pragma pack( 0)171 #pragma pack() 172 172 AssertCompileSize(DMGBLKX, 204); 173 173 … … 198 198 uint64_t cbData; /**< 0x020 - Number of bytes in the image. */ 199 199 } DMGBLKXDESC; 200 #pragma pack( 0)200 #pragma pack() 201 201 AssertCompileSize(DMGBLKXDESC, 40); 202 202 -
trunk/src/VBox/Devices/Storage/VBoxHDDFormats/AppleDiskImage/VBoxDMG.cpp
r28800 r33534 107 107 uint32_t au32Unknown[3]; /**< 0x1f4 - Unknown stuff, hdiutil doesn't dump it... */ 108 108 } VBOXUDIF; 109 #pragma pack( 0)109 #pragma pack() 110 110 AssertCompileSize(VBOXUDIF, 512); 111 111 AssertCompileMemberOffset(VBOXUDIF, cbRsrc, 0x030); -
trunk/src/VBox/Devices/Storage/VCICacheCore.cpp
r33533 r33534 78 78 uint8_t abReserved[951]; 79 79 } VciHdr, *PVciHdr; 80 #pragma pack( 0)80 #pragma pack() 81 81 AssertCompileSize(VciHdr, 2 * VCI_BLOCK_SIZE); 82 82 … … 119 119 uint64_t u64BlockAddr; 120 120 } VciCacheExtent, *PVciCacheExtent; 121 #pragma pack( 0)121 #pragma pack() 122 122 AssertCompileSize(VciCacheExtent, 38); 123 123 … … 137 137 uint64_t u64ChildAddr; 138 138 } VciTreeNodeInternal, *PVciTreeNodeInternal; 139 #pragma pack( 0)139 #pragma pack() 140 140 AssertCompileSize(VciTreeNodeInternal, 20); 141 141 … … 153 153 uint8_t au8Data[4095]; 154 154 } VciTreeNode, *PVciTreeNode; 155 #pragma pack( 0)155 #pragma pack() 156 156 AssertCompileSize(VciTreeNode, 8 * VCI_BLOCK_SIZE); 157 157 … … 189 189 uint8_t au8Reserved[472]; 190 190 } VciBlkMap, *PVciBlkMap; 191 #pragma pack( 0)191 #pragma pack() 192 192 AssertCompileSize(VciBlkMap, VCI_BLOCK_SIZE); 193 193
Note:
See TracChangeset
for help on using the changeset viewer.