9 Mar
2023
9 Mar
'23
8:13 a.m.
Rémi Bernon (@rbernon) commented about dlls/imm32/tests/imm32.c:
test_com_initialization();
+ pImmFreeLayout = (void *)GetProcAddress( GetModuleHandleW( L"imm32" ), "ImmFreeLayout" ); + ok( !!pImmFreeLayout, "missing ImmFreeLayout\n" ); + pImmLoadIME = (void *)GetProcAddress( GetModuleHandleW( L"imm32" ), "ImmLoadIME" ); + ok( !!pImmLoadIME, "missing ImmLoadIME\n" );
I guess I could just link with them after adding the stubs. I'll do that. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/2354#note_26490