Changeset 66046 in vbox for trunk/src/VBox/Main/src-all
- Timestamp:
- Mar 10, 2017 4:58:36 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/PCIDeviceAttachmentImpl.cpp
r61009 r66046 30 30 LONG aHostAddress, 31 31 LONG aGuestAddress, 32 BOOL afPhysical) 33 : HostAddress(aHostAddress), GuestAddress(aGuestAddress), 34 fPhysical(afPhysical) 32 BOOL afPhysical) : 33 DevName(aDevName), 34 HostAddress(aHostAddress), 35 GuestAddress(aGuestAddress), 36 fPhysical(afPhysical) 35 37 { 36 DevName = aDevName;37 38 } 38 39 … … 80 81 81 82 return S_OK; 83 } 84 85 HRESULT PCIDeviceAttachment::initCopy(IMachine *aParent, PCIDeviceAttachment *aThat) 86 { 87 LogFlowThisFunc(("aParent=%p, aThat=%p\n", aParent, aThat)); 88 89 ComAssertRet(aParent && aThat, E_INVALIDARG); 90 91 return init(aParent, aThat->m->DevName, aThat->m->HostAddress, aThat->m->GuestAddress, aThat->m->fPhysical); 82 92 } 83 93
Note:
See TracChangeset
for help on using the changeset viewer.