22 Nov
2022
22 Nov
'22
6:23 p.m.
Piotr Caban (@piotr) commented about dlls/imm32/imm.c:
InitializeSpy_PostUninitialize, };
+static BOOL WINAPI init_ole32_funcs( INIT_ONCE *once, void *param, void **context ) +{ + HMODULE module_ole32 = GetModuleHandleA("ole32");
GetModuleHandleA will work after first call to ole32. Please move the initialization after CoInitializeEx call. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1456#note_17002