https://git.reactos.org/?p=reactos.git;a=commitdiff;h=4af3372c23112e795dbd28...
commit 4af3372c23112e795dbd286c707f44f0c458d866 Author: Katayama Hirofumi MZ katayama.hirofumi.mz@gmail.com AuthorDate: Thu Oct 20 11:29:33 2022 +0900 Commit: Katayama Hirofumi MZ katayama.hirofumi.mz@gmail.com CommitDate: Thu Oct 20 11:29:33 2022 +0900
[IMM32] s/Imm32PostMessages/ImmPostMessages/
CORE-11700 --- dll/win32/imm32/keymsg.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dll/win32/imm32/keymsg.c b/dll/win32/imm32/keymsg.c index bff0671da03..104a6f6ee43 100644 --- a/dll/win32/imm32/keymsg.c +++ b/dll/win32/imm32/keymsg.c @@ -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); }