aboutsummaryrefslogtreecommitdiffstats
path: root/alc
diff options
context:
space:
mode:
Diffstat (limited to 'alc')
-rw-r--r--alc/backends/wasapi.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/alc/backends/wasapi.cpp b/alc/backends/wasapi.cpp
index 653c9098..b07cb62a 100644
--- a/alc/backends/wasapi.cpp
+++ b/alc/backends/wasapi.cpp
@@ -423,7 +423,7 @@ struct DeviceHelper final : private IMMNotificationClient
{
#if !defined(ALSOFT_UWP)
HRESULT hr{CoCreateInstance(CLSID_MMDeviceEnumerator, nullptr, CLSCTX_INPROC_SERVER,
- IID_IMMDeviceEnumerator, al::out_ptr(mEnumerator))};
+ __uuidof(IMMDeviceEnumerator), al::out_ptr(mEnumerator))};
if(SUCCEEDED(hr))
mEnumerator->RegisterEndpointNotificationCallback(this);
else
@@ -1621,7 +1621,7 @@ HRESULT WasapiPlayback::startProxy()
return hr;
}
- hr = mClient->GetService(IID_IAudioRenderClient, al::out_ptr(mRender));
+ hr = mClient->GetService(__uuidof(IAudioRenderClient), al::out_ptr(mRender));
if(SUCCEEDED(hr))
{
try {
@@ -2201,7 +2201,7 @@ HRESULT WasapiCapture::startProxy()
return hr;
}
- hr = mClient->GetService(IID_IAudioCaptureClient, al::out_ptr(mCapture));
+ hr = mClient->GetService(__uuidof(IAudioCaptureClient), al::out_ptr(mCapture));
if(SUCCEEDED(hr))
{
try {