mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 14:05:42 +00:00
[MMDEVAPI] Sync with Wine Staging 1.9.16. CORE-11866
svn path=/trunk/; revision=72288
This commit is contained in:
parent
85b1436323
commit
53a474e252
2 changed files with 4 additions and 5 deletions
|
@ -570,7 +570,7 @@ static HRESULT WINAPI MMDevice_Activate(IMMDevice *iface, REFIID riid, DWORD cls
|
|||
HRESULT hr = E_NOINTERFACE;
|
||||
MMDevice *This = impl_from_IMMDevice(iface);
|
||||
|
||||
TRACE("(%p)->(%p,%x,%p,%p)\n", iface, riid, clsctx, params, ppv);
|
||||
TRACE("(%p)->(%s, %x, %p, %p)\n", iface, debugstr_guid(riid), clsctx, params, ppv);
|
||||
|
||||
if (!ppv)
|
||||
return E_POINTER;
|
||||
|
@ -1263,7 +1263,7 @@ static HRESULT WINAPI MMDevEnum_RegisterEndpointNotificationCallback(IMMDeviceEn
|
|||
static HRESULT WINAPI MMDevEnum_UnregisterEndpointNotificationCallback(IMMDeviceEnumerator *iface, IMMNotificationClient *client)
|
||||
{
|
||||
MMDevEnumImpl *This = impl_from_IMMDeviceEnumerator(iface);
|
||||
struct NotificationClientWrapper *wrapper, *wrapper2;
|
||||
struct NotificationClientWrapper *wrapper;
|
||||
|
||||
TRACE("(%p)->(%p)\n", This, client);
|
||||
|
||||
|
@ -1272,8 +1272,7 @@ static HRESULT WINAPI MMDevEnum_UnregisterEndpointNotificationCallback(IMMDevice
|
|||
|
||||
EnterCriticalSection(&g_notif_lock);
|
||||
|
||||
LIST_FOR_EACH_ENTRY_SAFE(wrapper, wrapper2, &g_notif_clients,
|
||||
struct NotificationClientWrapper, entry){
|
||||
LIST_FOR_EACH_ENTRY(wrapper, &g_notif_clients, struct NotificationClientWrapper, entry){
|
||||
if(wrapper->client == client){
|
||||
list_remove(&wrapper->entry);
|
||||
HeapFree(GetProcessHeap(), 0, wrapper);
|
||||
|
|
|
@ -99,7 +99,7 @@ reactos/dll/win32/mciseq # Synced to WineStaging-1.9.11
|
|||
reactos/dll/win32/mciwave # Synced to WineStaging-1.9.11
|
||||
reactos/dll/win32/mgmtapi # Synced to WineStaging-1.9.11
|
||||
reactos/dll/win32/mlang # Synced to WineStaging-1.9.16
|
||||
reactos/dll/win32/mmdevapi # Synced to WineStaging-1.9.11
|
||||
reactos/dll/win32/mmdevapi # Synced to WineStaging-1.9.16
|
||||
reactos/dll/win32/mpr # Synced to WineStaging-1.9.11
|
||||
reactos/dll/win32/mprapi # Synced to WineStaging-1.9.11
|
||||
reactos/dll/win32/msacm32 # Synced to WineStaging-1.9.11
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue