mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
[IMM32] s/0x400/_WIN32_WINNT_NT4/
Don't use magic numbers. CORE-11700
This commit is contained in:
parent
747797fdc2
commit
9a8049cb39
1 changed files with 2 additions and 2 deletions
|
@ -4649,7 +4649,7 @@ BOOL WINAPI ImmGenerateMessage(HIMC hIMC)
|
|||
RtlCopyMemory(pTrans, pMsgs, cbTrans);
|
||||
|
||||
#ifdef IMP_SUPPORT
|
||||
if (GetWin32ClientInfo()->dwExpWinVer < 0x400) /* old version (3.x)? */
|
||||
if (GetWin32ClientInfo()->dwExpWinVer < _WIN32_WINNT_NT4) /* old version (3.x)? */
|
||||
{
|
||||
LANGID LangID = LANGIDFROMLCID(GetSystemDefaultLCID());
|
||||
WORD wLang = PRIMARYLANGID(LangID);
|
||||
|
@ -4700,7 +4700,7 @@ Imm32PostMessages(HWND hwnd, HIMC hIMC, DWORD dwCount, LPTRANSMSG lpTransMsg)
|
|||
ImmUnlockClientImc(pClientImc);
|
||||
|
||||
#ifdef IMP_SUPPORT
|
||||
if (GetWin32ClientInfo()->dwExpWinVer < 0x400) /* old version (3.x)? */
|
||||
if (GetWin32ClientInfo()->dwExpWinVer < _WIN32_WINNT_NT4) /* old version (3.x)? */
|
||||
{
|
||||
LANGID LangID = LANGIDFROMLCID(GetSystemDefaultLCID());
|
||||
WORD Lang = PRIMARYLANGID(LangID);
|
||||
|
|
Loading…
Reference in a new issue