Changeset 48878 in vbox
- Timestamp:
- Oct 4, 2013 8:33:50 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
include/VBox/vd.h (modified) (2 diffs)
-
src/VBox/Frontends/VBoxManage/VBoxInternalManage.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vd.h
r48743 r48878 155 155 * disks. 156 156 */ 157 enum PARTITIONING_TYPE157 typedef enum VBOXHDDPARTTYPE 158 158 { 159 159 MBR, 160 160 GPT 161 } ;161 } VBOXHDDPARTTYPE; 162 162 163 163 /** … … 179 179 /** Pointer to the partition descriptor array. */ 180 180 PVBOXHDDRAWPARTDESC pPartDescs; 181 /** partitioning type of the disk */182 PARTITIONING_TYPE uPartitioningType;181 /** Partitioning type of the disk */ 182 VBOXHDDPARTTYPE uPartitioningType; 183 183 184 184 } VBOXHDDRAW, *PVBOXHDDRAW; -
trunk/src/VBox/Frontends/VBoxManage/VBoxInternalManage.cpp
r46999 r48878 122 122 { 123 123 /** partitioning type - MBR or GPT */ 124 PARTITIONING_TYPE uPartitioningType;124 VBOXHDDPARTTYPE uPartitioningType; 125 125 unsigned cPartitions; 126 126 HOSTPARTITION aPartitions[HOSTPARTITION_MAX]; … … 755 755 int rc; 756 756 757 PARTITIONING_TYPE partitioningType;757 VBOXHDDPARTTYPE partitioningType; 758 758 759 759 pPart->cPartitions = 0;
Note:
See TracChangeset
for help on using the changeset viewer.

