Changeset 48879 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Oct 4, 2013 8:37:50 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 89551
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MachineImpl.h
r48538 r48879 543 543 STDMETHOD(NonRotationalDevice)(IN_BSTR aControllerName, LONG aControllerPort, LONG aDevice, BOOL aNonRotational); 544 544 STDMETHOD(SetAutoDiscardForDevice)(IN_BSTR aControllerName, LONG aControllerPort, LONG aDevice, BOOL aDiscard); 545 STDMETHOD(SetHotPluggableForDevice)(IN_BSTR aControllerName, LONG aControllerPort, LONG aDevice, BOOL aHotPluggable); 545 546 STDMETHOD(SetNoBandwidthGroupForDevice)(IN_BSTR aControllerName, LONG aControllerPort, 546 547 LONG aDevice); -
trunk/src/VBox/Main/include/MediumAttachmentImpl.h
r38873 r48879 5 5 6 6 /* 7 * Copyright (C) 2006-201 1Oracle Corporation7 * Copyright (C) 2006-2013 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 52 52 bool fNonRotational, 53 53 bool fDiscard, 54 bool fHotPluggable, 54 55 const Utf8Str &strBandwidthGroup); 55 56 HRESULT initCopy(Machine *aParent, MediumAttachment *aThat); … … 71 72 STDMETHOD(COMGETTER(Discard))(BOOL *aDiscard); 72 73 STDMETHOD(COMGETTER(BandwidthGroup))(IBandwidthGroup **aBwGroup); 74 STDMETHOD(COMGETTER(HotPluggable))(BOOL *aHotPluggable); 73 75 74 76 // public internal methods … … 91 93 bool getDiscard() const; 92 94 const Utf8Str& getBandwidthGroup() const; 95 bool getHotPluggable() const; 93 96 94 97 bool matches(CBSTR aControllerName, LONG aPort, LONG aDevice); … … 117 120 void updateParentMachine(Machine * const pMachine); 118 121 122 /** Must be called from under this object's write lock. */ 123 void updateHotPluggable(bool aHotPluggable); 124 119 125 /** Get a unique and somewhat descriptive name for logging. */ 120 126 const char* getLogName(void) const { return mLogName.c_str(); }
Note:
See TracChangeset
for help on using the changeset viewer.