Changeset 25901 in vbox for trunk/include/VBox/settings.h
- Timestamp:
- Jan 18, 2010 4:52:21 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56716
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/settings.h
r25672 r25901 451 451 typedef std::list<CpuIdLeaf> CpuIdLeafsList; 452 452 453 struct Cpu 454 { 455 Cpu() 456 : ulId(UINT32_MAX) 457 {} 458 459 uint32_t ulId; 460 }; 461 typedef std::list<Cpu> CpuList; 462 453 463 struct Hardware 454 464 { … … 465 475 fPAE; 466 476 uint32_t cCPUs; 477 bool fCpuHotPlug; // requires settings version 1.11 (VirtualBox 3.2) 478 CpuList llCpus; // requires settings version 1.11 (VirtualBox 3.2) 467 479 CpuIdLeafsList llCpuIdLeafs; 468 480 … … 593 605 void readNetworkAdapters(const xml::ElementNode &elmHardware, NetworkAdaptersList &ll); 594 606 void readCpuIdTree(const xml::ElementNode &elmCpuid, CpuIdLeafsList &ll); 607 void readCpuTree(const xml::ElementNode &elmCpu, CpuList &ll); 595 608 void readSerialPorts(const xml::ElementNode &elmUART, SerialPortsList &ll); 596 609 void readParallelPorts(const xml::ElementNode &elmLPT, ParallelPortsList &ll);
Note:
See TracChangeset
for help on using the changeset viewer.