http://bugs.winehq.org/show_bug.cgi?id=35658
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |dotnet Status|UNCONFIRMED |NEW CC| |focht@gmx.net Summary|Anthem Room Correction 2 |Anthem Room Correction 2 |v1.0.1: Unknown COM error |v1.0.1 reports 'Unknown COM |0x80004001 |error 0x80004001' (needs | |IAudioEndpointVolume::GetVo | |lumeRange method | |implementation) Ever confirmed|0 |1
--- Comment #3 from Anastasius Focht focht@gmx.net --- Hello Tristan,
refining summary to target the stub.
Source: http://source.winehq.org/git/wine.git/blob/5e93aa38ab788a671b0b64272702e422e...
--- snip --- 249 static HRESULT WINAPI AEV_GetVolumeRange(IAudioEndpointVolumeEx *iface, float *mindb, float *maxdb, float *inc) 250 { 251 TRACE("(%p)->(%p,%p,%p)\n", iface, mindb, maxdb, inc); 252 if (!mindb || !maxdb || !inc) 253 return E_POINTER; 254 FIXME("stub\n"); 255 return E_NOTIMPL; 256 } --- snip ---
Regards