Changeset 55528 in vbox for trunk/src/VBox/Main
- Timestamp:
- Apr 29, 2015 4:38:59 PM (10 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r55523 r55528 17809 17809 <interface 17810 17810 name="IAudioAdapter" extends="$unknown" 17811 uuid=" 921873db-5f3f-4b69-91f9-7be9e535a2cb"17811 uuid="280cc7f7-eddc-48b6-9bbb-5b1e8d761c0e" 17812 17812 wsmap="managed" 17813 17813 > … … 17822 17822 not contain any audio adapter. Can only be changed when 17823 17823 the VM is not running. 17824 </desc> 17825 </attribute> 17826 <attribute name="enabledIn" type="boolean"> 17827 <desc> 17828 Flag whether the audio adapter is enabled for audio 17829 input. Only relevant if the adapter is enabled. 17830 </desc> 17831 </attribute> 17832 <attribute name="enabledOut" type="boolean"> 17833 <desc> 17834 Flag whether the audio adapter is enabled for audio 17835 output. Only relevant if the adapter is enabled. 17824 17836 </desc> 17825 17837 </attribute> -
trunk/src/VBox/Main/include/AudioAdapterImpl.h
r49874 r55528 57 57 HRESULT getEnabled(BOOL *aEnabled); 58 58 HRESULT setEnabled(BOOL aEnabled); 59 HRESULT getEnabledIn(BOOL *aEnabled); 60 HRESULT setEnabledIn(BOOL aEnabled); 61 HRESULT getEnabledOut(BOOL *aEnabled); 62 HRESULT setEnabledOut(BOOL aEnabled); 59 63 HRESULT getAudioDriver(AudioDriverType_T *aAudioDriver); 60 64 HRESULT setAudioDriver(AudioDriverType_T aAudioDriver); -
trunk/src/VBox/Main/src-server/AudioAdapterImpl.cpp
r55401 r55528 233 233 234 234 return S_OK; 235 } 236 237 HRESULT AudioAdapter::getEnabledIn(BOOL *aEnabled) 238 { 239 return E_NOTIMPL; 240 } 241 242 HRESULT AudioAdapter::setEnabledIn(BOOL aEnabled) 243 { 244 return E_NOTIMPL; 245 } 246 247 HRESULT AudioAdapter::getEnabledOut(BOOL *aEnabled) 248 { 249 return E_NOTIMPL; 250 } 251 252 HRESULT AudioAdapter::setEnabledOut(BOOL aEnabled) 253 { 254 return E_NOTIMPL; 235 255 } 236 256
Note:
See TracChangeset
for help on using the changeset viewer.