Changeset 35358 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Dec 28, 2010 7:58:40 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MachineImpl.h
r35357 r35358 291 291 BOOL mIoCacheEnabled; 292 292 ULONG mIoCacheSize; 293 294 typedef std::list< ComObjPtr<PciDeviceAttachment> > PciDeviceAssignmentList;295 PciDeviceAssignmentList mPciDeviceAssignments;296 293 }; 297 294 … … 526 523 STDMETHOD(QueryLogFilename(ULONG aIdx, BSTR *aName)); 527 524 STDMETHOD(ReadLog(ULONG aIdx, LONG64 aOffset, LONG64 aSize, ComSafeArrayOut(BYTE, aData))); 528 STDMETHOD(AttachHostPciDevice(LONG hostAddress, LONG desiredGuestAddress, BOOL tryToUnbind));525 STDMETHOD(AttachHostPciDevice(LONG hostAddress, LONG desiredGuestAddress, IEventContext *eventContext, BOOL tryToUnbind)); 529 526 STDMETHOD(DetachHostPciDevice(LONG hostAddress)); 530 527 STDMETHOD(COMGETTER(PciDeviceAssignments))(ComSafeArrayOut(IPciDeviceAttachment *, aAssignments)); … … 873 870 typedef std::list< ComObjPtr<StorageController> > StorageControllerList; 874 871 Backupable<StorageControllerList> mStorageControllers; 872 873 typedef std::list< ComObjPtr<PciDeviceAttachment> > PciDeviceAssignmentList; 874 PciDeviceAssignmentList mPciDeviceAssignments; 875 875 876 876 friend class SessionMachine;
Note:
See TracChangeset
for help on using the changeset viewer.