Changeset 35684 in vbox for trunk/src/VBox/Main/src-all
- Timestamp:
- Jan 24, 2011 3:28:38 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69610
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/PciDeviceAttachmentImpl.cpp
r35638 r35684 25 25 struct PciDeviceAttachment::Data 26 26 { 27 Data( Machine *aParent,28 const Bstr &aDevName,27 Data(IMachine *aParent, 28 const Bstr &aDevName, 29 29 LONG aHostAddress, 30 30 LONG aGuestAddress, 31 31 BOOL afPhysical) 32 : pMachine(aParent), 33 HostAddress(aHostAddress), GuestAddress(aGuestAddress), 32 : HostAddress(aHostAddress), GuestAddress(aGuestAddress), 34 33 fPhysical(afPhysical) 35 34 { … … 37 36 } 38 37 39 Machine * const pMachine; 40 Bstr DevName; 41 LONG HostAddress; 42 LONG GuestAddress; 43 BOOL fPhysical; 38 Bstr DevName; 39 LONG HostAddress; 40 LONG GuestAddress; 41 BOOL fPhysical; 44 42 }; 45 43 … … 62 60 // public initializer/uninitializer for internal purposes only 63 61 ///////////////////////////////////////////////////////////////////////////// 64 HRESULT PciDeviceAttachment::init( Machine *aParent,62 HRESULT PciDeviceAttachment::init(IMachine *aParent, 65 63 const Bstr &aDevName, 66 64 LONG aHostAddress,
Note:
See TracChangeset
for help on using the changeset viewer.