Alexandre Julliard : include: Fix a parameter type in the IEnumTfUIElements interface.
Module: wine Branch: master Commit: 5e1da85068143bf727e0252230343b1636799716 URL: https://gitlab.winehq.org/wine/wine/-/commit/5e1da85068143bf727e0252230343b1... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Wed Mar 27 21:57:27 2024 +0100 include: Fix a parameter type in the IEnumTfUIElements interface. Caught by midl. --- include/msctf.idl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/msctf.idl b/include/msctf.idl index 6a9b36a670e..6b0c84bdd53 100644 --- a/include/msctf.idl +++ b/include/msctf.idl @@ -1817,7 +1817,7 @@ interface IEnumTfUIElements : IUnknown HRESULT Next( [in] ULONG count, [out, size_is(count), length_is(fetched)] ITfUIElement **element, - [out] ULONG fetched); + [out] ULONG *fetched); HRESULT Reset();
participants (1)
-
Alexandre Julliard