Switch to explicit Unicode functions for DispatchMessage().
This commit is contained in:
parent
0acc15c38f
commit
72ead3a23e
|
@ -18,13 +18,13 @@ static void msgloop_tab(HWND active, HWND focus, MSG *msg)
|
||||||
if (idm != 0)
|
if (idm != 0)
|
||||||
return;
|
return;
|
||||||
TranslateMessage(msg);
|
TranslateMessage(msg);
|
||||||
DispatchMessage(msg);
|
DispatchMessageW(msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void msgloop_else(MSG *msg)
|
static void msgloop_else(MSG *msg)
|
||||||
{
|
{
|
||||||
TranslateMessage(msg);
|
TranslateMessage(msg);
|
||||||
DispatchMessage(msg);
|
DispatchMessageW(msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
void uiMain(void)
|
void uiMain(void)
|
||||||
|
|
Loading…
Reference in New Issue