17 Mar
2023
17 Mar
'23
1:24 p.m.
Jacek Caban (@jacek) commented about dlls/win32u/imm.c:
NtUserDestroyInputContext( UlongToHandle( thread_info->client_info.default_imc )); }
+/***************************************************************************** + * NtUserBuildHimcList (win32u.@) + */ +NTSTATUS WINAPI NtUserBuildHimcList( ULONG thread_id, ULONG count, HIMC *buffer, ULONG *size ) +{ + FIXME( "thread_id %#x, count %u, buffer %p, size %p stub!\n", (UINT)thread_id, (UINT)count, buffer, size );
I think you could use types that don't require casting in NtUserBuildHimcList declaration (it doesn't have documented prototype, so we have some freedom there). -- https://gitlab.winehq.org/wine/wine/-/merge_requests/2422#note_27159