mirror of
https://github.com/reactos/reactos.git
synced 2026-05-30 23:33:24 +08:00
[IMM32] s/Imm32PostMessages/ImmPostMessages/
CORE-11700
This commit is contained in:
@@ -954,7 +954,7 @@ Quit:
|
||||
}
|
||||
|
||||
VOID APIENTRY
|
||||
Imm32PostMessages(HWND hwnd, HIMC hIMC, DWORD dwCount, LPTRANSMSG lpTransMsg)
|
||||
ImmPostMessages(HWND hwnd, HIMC hIMC, DWORD dwCount, LPTRANSMSG lpTransMsg)
|
||||
{
|
||||
DWORD dwIndex;
|
||||
PCLIENTIMC pClientImc;
|
||||
@@ -1059,7 +1059,7 @@ BOOL WINAPI ImmTranslateMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lKeyD
|
||||
pTransMsg = ImmLockIMCC(pIC->hMsgBuf);
|
||||
if (pTransMsg)
|
||||
{
|
||||
Imm32PostMessages(hwnd, hIMC, dwCount, pTransMsg);
|
||||
ImmPostMessages(hwnd, hIMC, dwCount, pTransMsg);
|
||||
ImmUnlockIMCC(pIC->hMsgBuf);
|
||||
ret = TRUE;
|
||||
}
|
||||
@@ -1112,7 +1112,7 @@ BOOL WINAPI ImmTranslateMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lKeyD
|
||||
/* post them */
|
||||
if (kret <= MSG_COUNT)
|
||||
{
|
||||
Imm32PostMessages(hwnd, hIMC, kret, pList->TransMsg);
|
||||
ImmPostMessages(hwnd, hIMC, kret, pList->TransMsg);
|
||||
ret = TRUE;
|
||||
}
|
||||
else
|
||||
@@ -1120,7 +1120,7 @@ BOOL WINAPI ImmTranslateMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lKeyD
|
||||
pTransMsg = ImmLockIMCC(pIC->hMsgBuf);
|
||||
if (pTransMsg == NULL)
|
||||
goto Quit;
|
||||
Imm32PostMessages(hwnd, hIMC, kret, pTransMsg);
|
||||
ImmPostMessages(hwnd, hIMC, kret, pTransMsg);
|
||||
ImmUnlockIMCC(pIC->hMsgBuf);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user