- Timestamp:
- Oct 17, 2023 11:55:39 AM (12 months ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
-
include/ConsoleImpl.h (modified) (1 diff)
-
src-client/ConsoleImplConfigCommon.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r101469 r101474 856 856 int i_configAudioCtrl(ComPtr<IVirtualBox> pVBox, ComPtr<IMachine> pMachine, BusAssignmentManager *pBusMgr, PCFGMNODE pDevices, 857 857 bool fOsXGuest, bool *pfAudioEnabled); 858 int i_configVmmDev(ComPtr<IMachine> pMachine, BusAssignmentManager *pBusMgr, PCFGMNODE pDevices );858 int i_configVmmDev(ComPtr<IMachine> pMachine, BusAssignmentManager *pBusMgr, PCFGMNODE pDevices, bool fMmioReq = false); 859 859 int i_configPdm(ComPtr<IMachine> pMachine, PCVMMR3VTABLE pVMM, PUVM pUVM, PCFGMNODE pRoot); 860 860 int i_configUsb(ComPtr<IMachine> pMachine, BusAssignmentManager *pBusMgr, PCFGMNODE pRoot, PCFGMNODE pDevices, -
trunk/src/VBox/Main/src-client/ConsoleImplConfigCommon.cpp
r101469 r101474 3916 3916 3917 3917 3918 int Console::i_configVmmDev(ComPtr<IMachine> pMachine, BusAssignmentManager *pBusMgr, PCFGMNODE pDevices )3918 int Console::i_configVmmDev(ComPtr<IMachine> pMachine, BusAssignmentManager *pBusMgr, PCFGMNODE pDevices, bool fMmioReq) 3919 3919 { 3920 3920 VMMDev *pVMMDev = m_pVMMDev; Assert(pVMMDev); … … 3934 3934 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */ 3935 3935 HRESULT hrc = pBusMgr->assignPCIDevice("VMMDev", pInst); H(); 3936 if (fMmioReq) 3937 InsertConfigInteger(pCfg, "MmioReq", 1); 3936 3938 3937 3939 Bstr hwVersion;
Note:
See TracChangeset
for help on using the changeset viewer.

