Changeset 26088 in vbox for trunk/src/VBox/Main/include/AudioAdapterImpl.h
- Timestamp:
- Jan 28, 2010 4:50:32 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/AudioAdapterImpl.h
r26044 r26088 75 75 76 76 // public initializer/uninitializer for internal purposes only 77 HRESULT init 78 HRESULT init 79 HRESULT initCopy 77 HRESULT init(Machine *aParent); 78 HRESULT init(Machine *aParent, AudioAdapter *aThat); 79 HRESULT initCopy(Machine *aParent, AudioAdapter *aThat); 80 80 void uninit(); 81 81 82 82 STDMETHOD(COMGETTER(Enabled))(BOOL *aEnabled); 83 83 STDMETHOD(COMSETTER(Enabled))(BOOL aEnabled); 84 STDMETHOD(COMGETTER(AudioDriver)) 85 STDMETHOD(COMSETTER(AudioDriver)) 86 STDMETHOD(COMGETTER(AudioController)) 87 STDMETHOD(COMSETTER(AudioController)) 84 STDMETHOD(COMGETTER(AudioDriver))(AudioDriverType_T *aAudioDriverType); 85 STDMETHOD(COMSETTER(AudioDriver))(AudioDriverType_T aAudioDriverType); 86 STDMETHOD(COMGETTER(AudioController))(AudioControllerType_T *aAudioControllerType); 87 STDMETHOD(COMSETTER(AudioController))(AudioControllerType_T aAudioControllerType); 88 88 89 89 // public methods only for internal purposes … … 92 92 HRESULT saveSettings(settings::AudioAdapter &data); 93 93 94 bool isModified() { AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); return mData.isBackedUp(); }95 bool isReallyModified() { AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); return mData.hasActualChanges(); }94 bool isModified(); 95 bool isReallyModified(); 96 96 bool rollback(); 97 97 void commit(); 98 void copyFrom 98 void copyFrom(AudioAdapter *aThat); 99 99 100 100 // for VirtualBoxSupportErrorInfoImpl
Note:
See TracChangeset
for help on using the changeset viewer.