1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-01 07:14:31 +00:00

include: Fix a parameter type in the IEnumTfUIElements interface.

Caught by midl.
This commit is contained in:
Alexandre Julliard 2024-03-27 21:57:27 +01:00
parent 69849bd2ee
commit 5e1da85068

View File

@ -1817,7 +1817,7 @@ interface IEnumTfUIElements : IUnknown
HRESULT Next( HRESULT Next(
[in] ULONG count, [in] ULONG count,
[out, size_is(count), length_is(fetched)] ITfUIElement **element, [out, size_is(count), length_is(fetched)] ITfUIElement **element,
[out] ULONG fetched); [out] ULONG *fetched);
HRESULT Reset(); HRESULT Reset();