[PATCH v2 1/9] windows.media.speech: Add a missing trace to async_operation_create.

Bernhard Kölbl wine at gitlab.winehq.org
Thu May 12 15:28:04 CDT 2022


From: Bernhard Kölbl <besentv at gmail.com>

Signed-off-by: Bernhard Kölbl <besentv at gmail.com>
---
 dlls/windows.media.speech/async.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dlls/windows.media.speech/async.c b/dlls/windows.media.speech/async.c
index 64a095a0134..e7547225c1c 100644
--- a/dlls/windows.media.speech/async.c
+++ b/dlls/windows.media.speech/async.c
@@ -367,6 +367,8 @@ HRESULT async_operation_create( const GUID *iid, IInspectable *invoker, async_op
 {
     struct async_operation *impl;
 
+    TRACE("iid %s, invoker %p, callback %p, out %p.\n", debugstr_guid(iid), invoker, callback, out);
+
     *out = NULL;
     if (!(impl = calloc(1, sizeof(*impl)))) return E_OUTOFMEMORY;
     impl->IAsyncOperation_IInspectable_iface.lpVtbl = &async_operation_vtbl;
-- 
GitLab


https://gitlab.winehq.org/wine/wine/-/merge_requests/34



More information about the wine-devel mailing list