Author: akhaldi
Date: Thu Aug 18 10:17:05 2016
New Revision: 72288
URL:
http://svn.reactos.org/svn/reactos?rev=72288&view=rev
Log:
[MMDEVAPI] Sync with Wine Staging 1.9.16. CORE-11866
Modified:
trunk/reactos/dll/win32/mmdevapi/devenum.c
trunk/reactos/media/doc/README.WINE
Modified: trunk/reactos/dll/win32/mmdevapi/devenum.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/mmdevapi/devenum…
==============================================================================
--- trunk/reactos/dll/win32/mmdevapi/devenum.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/mmdevapi/devenum.c [iso-8859-1] Thu Aug 18 10:17:05 2016
@@ -570,7 +570,7 @@
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_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 @@
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);
Modified: trunk/reactos/media/doc/README.WINE
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/media/doc/README.WINE?rev=…
==============================================================================
--- trunk/reactos/media/doc/README.WINE [iso-8859-1] (original)
+++ trunk/reactos/media/doc/README.WINE [iso-8859-1] Thu Aug 18 10:17:05 2016
@@ -99,7 +99,7 @@
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