Skip to content

Commit

Permalink
Added missing STDMETHODCALLTYPE from definition
Browse files Browse the repository at this point in the history
  • Loading branch information
sskodje committed May 7, 2023
1 parent 00183bf commit 6d4030f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ScreenRecorderLibNative/WASAPINotify.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ class WASAPINotify : public IMMNotificationClient {
REFIID riid, VOID **ppvInterface);
private:
// IMMNotificationClient methods
virtual HRESULT IMMNotificationClient::OnDeviceStateChanged(LPCWSTR, DWORD);
virtual HRESULT IMMNotificationClient::OnDeviceAdded(LPCWSTR);
virtual HRESULT IMMNotificationClient::OnDeviceRemoved(LPCWSTR);
virtual HRESULT IMMNotificationClient::OnDefaultDeviceChanged(EDataFlow, ERole, LPCWSTR);
virtual HRESULT IMMNotificationClient::OnPropertyValueChanged(LPCWSTR, const PROPERTYKEY);
virtual HRESULT STDMETHODCALLTYPE IMMNotificationClient::OnDeviceStateChanged(LPCWSTR, DWORD);
virtual HRESULT STDMETHODCALLTYPE IMMNotificationClient::OnDeviceAdded(LPCWSTR);
virtual HRESULT STDMETHODCALLTYPE IMMNotificationClient::OnDeviceRemoved(LPCWSTR);
virtual HRESULT STDMETHODCALLTYPE IMMNotificationClient::OnDefaultDeviceChanged(EDataFlow, ERole, LPCWSTR);
virtual HRESULT STDMETHODCALLTYPE IMMNotificationClient::OnPropertyValueChanged(LPCWSTR, const PROPERTYKEY);
};

0 comments on commit 6d4030f

Please sign in to comment.