Changeset 29422 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- May 12, 2010 2:08:52 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 61537
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ApplianceImpl.h
r28800 r29422 141 141 uint32_t ulAddressOnParent, 142 142 Bstr &controllerType, 143 int32_t &lC hannel,143 int32_t &lControllerPort, 144 144 int32_t &lDevice); 145 145 -
trunk/src/VBox/Main/include/ApplianceImplPrivate.h
r28800 r29422 127 127 ComPtr<IMachine> pMachine; 128 128 Bstr controllerType; 129 int32_t lC hannel;130 int32_t lDevice; 129 int32_t lControllerPort; // 0-29 for SATA 130 int32_t lDevice; // IDE: 0 or 1, otherwise 0 always 131 131 }; 132 132 -
trunk/src/VBox/Main/include/ovfreader.h
r29087 r29422 217 217 // a network adapter depending on the network name. 218 218 iprt::MiniString strAddress; // "Device-specific. For an Ethernet adapter, this specifies the MAC address." 219 int32_t lAddress; // strAddress as an integer, if applicable. 219 220 iprt::MiniString strAddressOnParent; // "For a device, this specifies its location on the controller." 220 221 iprt::MiniString strAllocationUnits; // "Specifies the units of allocation used. For example, “byte * 2^20”." … … 262 263 // treats it as a fourth class besides IDE, SATA, SCSI 263 264 264 uint32_t ulAddress; // controller index; this is determined heuristically by the OVF reader and will 265 // be 0 for the first controller of this type (e.g. IDE primary ctler), 1 for the 266 // next (e.g. IDE secondary ctler) 265 int32_t lAddress; // value from OVF "Address" element 266 bool fPrimary; // controller index; this is determined heuristically by the OVF reader and will 267 // be true for the first controller of this type (e.g. IDE primary ctler) or 268 // false for the next (e.g. IDE secondary ctler) 267 269 268 270 HardDiskController() 269 271 : idController(0), 270 ulAddress(0) 272 lAddress(0), 273 fPrimary(true) 271 274 { } 272 275 };
Note:
See TracChangeset
for help on using the changeset viewer.