Changeset 68938 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Sep 29, 2017 4:13:26 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MachineImpl.h
r68485 r68938 298 298 BOOL mCPUAttached[SchemaDefs::MaxCPUCount]; 299 299 300 settings::CpuIdLeaf mCpuIdStdLeafs[11]; 301 settings::CpuIdLeaf mCpuIdExtLeafs[11]; 300 std::list<settings::CpuIdLeaf> mCpuIdLeafList; 302 301 303 302 DeviceType_T mBootOrder[SchemaDefs::MaxBootPosition]; … … 1090 1089 HRESULT setCPUProperty(CPUPropertyType_T aProperty, 1091 1090 BOOL aValue); 1092 HRESULT getCPUIDLeaf(ULONG aId, 1091 HRESULT getCPUIDLeafByOrdinal(ULONG aOrdinal, 1092 ULONG *aIdx, 1093 ULONG *aSubIdx, 1094 ULONG *aValEax, 1095 ULONG *aValEbx, 1096 ULONG *aValEcx, 1097 ULONG *aValEdx); 1098 HRESULT getCPUIDLeaf(ULONG aIdx, ULONG aSubIdx, 1093 1099 ULONG *aValEax, 1094 1100 ULONG *aValEbx, 1095 1101 ULONG *aValEcx, 1096 1102 ULONG *aValEdx); 1097 HRESULT setCPUIDLeaf(ULONG aId ,1103 HRESULT setCPUIDLeaf(ULONG aIdx, ULONG aSubIdx, 1098 1104 ULONG aValEax, 1099 1105 ULONG aValEbx, 1100 1106 ULONG aValEcx, 1101 1107 ULONG aValEdx); 1102 HRESULT removeCPUIDLeaf(ULONG aId );1108 HRESULT removeCPUIDLeaf(ULONG aIdx, ULONG aSubIdx); 1103 1109 HRESULT removeAllCPUIDLeaves(); 1104 1110 HRESULT getHWVirtExProperty(HWVirtExPropertyType_T aProperty,
Note:
See TracChangeset
for help on using the changeset viewer.