Changeset 24296 in vbox
- Timestamp:
- Nov 3, 2009 5:14:51 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/settings.h
r24250 r24296 392 392 typedef std::map<uint32_t, DeviceType_T> BootOrderMap; 393 393 394 struct CpuIdLeaf 395 { 396 CpuIdLeaf() 397 : ulId(-1), 398 ulEax(0), 399 ulEbx(0), 400 ulEcx(0), 401 ulEdx(0) 402 {} 403 404 uint32_t ulId; 405 uint32_t ulEax; 406 uint32_t ulEbx; 407 uint32_t ulEcx; 408 uint32_t ulEdx; 409 }; 410 typedef std::list<CpuIdLeaf> CpuIdLeafsList; 411 394 412 struct Hardware 395 413 { … … 406 424 fPAE; 407 425 uint32_t cCPUs; 426 CpuIdLeafsList llCpuIdLeafs; 408 427 409 428 uint32_t ulMemorySizeMB; … … 532 551 533 552 void readNetworkAdapters(const xml::ElementNode &elmHardware, NetworkAdaptersList &ll); 553 void readCpuIdTree(const xml::ElementNode &elmCpuid, CpuIdLeafsList &ll); 534 554 void readSerialPorts(const xml::ElementNode &elmUART, SerialPortsList &ll); 535 555 void readParallelPorts(const xml::ElementNode &elmLPT, ParallelPortsList &ll);
Note:
See TracChangeset
for help on using the changeset viewer.