Changeset 38873 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Sep 27, 2011 8:58:22 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 74195
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r37851 r38873 528 528 unsigned uMergeTarget, 529 529 const char *pcszBwGroup, 530 bool fDiscard, 530 531 IMedium *pMedium, 531 532 MachineState_T aMachineState, -
trunk/src/VBox/Main/include/MachineImpl.h
r38820 r38873 479 479 STDMETHOD(TemporaryEjectDevice)(IN_BSTR aControllerName, LONG aControllerPort, LONG aDevice, BOOL aTempEject); 480 480 STDMETHOD(NonRotationalDevice)(IN_BSTR aControllerName, LONG aControllerPort, LONG aDevice, BOOL aNonRotational); 481 STDMETHOD(DiscardDevice)(IN_BSTR aControllerName, LONG aControllerPort, LONG aDevice, BOOL aDiscard); 481 482 STDMETHOD(SetBandwidthGroupForDevice)(IN_BSTR aControllerName, LONG aControllerPort, 482 483 LONG aDevice, IBandwidthGroup *aBandwidthGroup); -
trunk/src/VBox/Main/include/MediumAttachmentImpl.h
r38718 r38873 51 51 bool fTempEject, 52 52 bool fNonRotational, 53 bool fDiscard, 53 54 const Utf8Str &strBandwidthGroup); 54 55 HRESULT initCopy(Machine *aParent, MediumAttachment *aThat); … … 68 69 STDMETHOD(COMGETTER(IsEjected))(BOOL *aIsEjected); 69 70 STDMETHOD(COMGETTER(NonRotational))(BOOL *aNonRotational); 71 STDMETHOD(COMGETTER(Discard))(BOOL *aDiscard); 70 72 STDMETHOD(COMGETTER(BandwidthGroup))(IBandwidthGroup **aBwGroup); 71 73 … … 87 89 bool getTempEject() const; 88 90 bool getNonRotational() const; 91 bool getDiscard() const; 89 92 const Utf8Str& getBandwidthGroup() const; 90 93 … … 102 105 /** Must be called from under this object's write lock. */ 103 106 void updateNonRotational(bool aNonRotational); 107 108 /** Must be called from under this object's write lock. */ 109 void updateDiscard(bool aDiscard); 104 110 105 111 /** Must be called from under this object's write lock. */
Note:
See TracChangeset
for help on using the changeset viewer.