Module: wine Branch: master Commit: ca86fc7150c9b67202cc8e883d05f6ccef7e802f URL: https://source.winehq.org/git/wine.git/?a=commit;h=ca86fc7150c9b67202cc8e883...
Author: Bernhard Kölbl besentv@gmail.com Date: Wed Apr 6 18:28:40 2022 +0200
include/windows.foundation.collections.idl: Set correct return type for IAsyncOperation_GetResults.
Signed-off-by: Bernhard Kölbl besentv@gmail.com Signed-off-by: Rémi Bernon rbernon@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
include/windows.foundation.collections.idl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/windows.foundation.collections.idl b/include/windows.foundation.collections.idl index 5ed60ed176e..395adad27aa 100644 --- a/include/windows.foundation.collections.idl +++ b/include/windows.foundation.collections.idl @@ -64,7 +64,7 @@ cpp_quote("#endif") { [propput] HRESULT Completed([in] Windows.Foundation.AsyncOperationCompletedHandler<TResult> *handler); [propget] HRESULT Completed([out, retval] Windows.Foundation.AsyncOperationCompletedHandler<TResult> **handler); - HRESULT GetResults([out, retval] TResult **results); + HRESULT GetResults([out, retval] TResult *results); }
[