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>
This commit is contained in:
Bernhard Kölbl 2022-04-06 18:28:40 +02:00 committed by Alexandre Julliard
parent 9912eb407d
commit ca86fc7150
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
[