Commit 3ea35e7e authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

mmdevapi: Report 100% volume in GetMasterVolumeLevelScalar stub.

parent 00e55c8f
......@@ -159,7 +159,8 @@ static HRESULT WINAPI AEV_GetMasterVolumeLevelScalar(IAudioEndpointVolumeEx *ifa
if (!level)
return E_POINTER;
FIXME("stub\n");
return E_NOTIMPL;
*level = 1.0;
return S_OK;
}
static HRESULT WINAPI AEV_SetChannelVolumeLevel(IAudioEndpointVolumeEx *iface, UINT chan, float leveldb, const GUID *ctx)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment