VirtualBox

Changeset 24296 in vbox


Ignore:
Timestamp:
Nov 3, 2009 5:14:51 PM (15 years ago)
Author:
vboxsync
Message:

Missing header

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/settings.h

    r24250 r24296  
    392392typedef std::map<uint32_t, DeviceType_T> BootOrderMap;
    393393
     394struct 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};
     410typedef std::list<CpuIdLeaf> CpuIdLeafsList;
     411
    394412struct Hardware
    395413{
     
    406424                        fPAE;
    407425    uint32_t            cCPUs;
     426    CpuIdLeafsList      llCpuIdLeafs;
    408427
    409428    uint32_t            ulMemorySizeMB;
     
    532551
    533552    void readNetworkAdapters(const xml::ElementNode &elmHardware, NetworkAdaptersList &ll);
     553    void readCpuIdTree(const xml::ElementNode &elmCpuid, CpuIdLeafsList &ll);
    534554    void readSerialPorts(const xml::ElementNode &elmUART, SerialPortsList &ll);
    535555    void readParallelPorts(const xml::ElementNode &elmLPT, ParallelPortsList &ll);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette