mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 05:35:40 +00:00
[BOOTDATA][NTUSER] Add DontLoadCTFIME and use it (#8110)
Improve CTF IME customization. Use the proper names for CTF IME. JIRA issue: CORE-19268 - In the registry key "HKLM\SOFTWARE\Microsoft\ Windows NT\CurrentVersion\IMM", add DontLoadCTFIME value and set it to 1. - Delete LoadCTFIME value to avoid user confusing. - Rename UserIsCiceroEnabled function as UserIsCTFIMEEnabled. - Rename SRVINFO_CICERO_ENABLED flag as SRVINFO_CTFIME_ENABLED.
This commit is contained in:
parent
474212939d
commit
d809cd0f7f
4 changed files with 7 additions and 11 deletions
|
@ -948,7 +948,7 @@ typedef LONG_PTR
|
|||
#define SRVINFO_DBCSENABLED 0x0002
|
||||
#define SRVINFO_IMM32 0x0004
|
||||
#define SRVINFO_APIHOOK 0x0010
|
||||
#define SRVINFO_CICERO_ENABLED 0x0020
|
||||
#define SRVINFO_CTFIME_ENABLED 0x0020
|
||||
#define SRVINFO_KBDPREF 0x0080
|
||||
|
||||
#define NUM_SYSCOLORS 31
|
||||
|
@ -1210,7 +1210,7 @@ typedef struct tagCURSORDATA
|
|||
#define COMPAT_FLAG_2_CICERO_DISABLED 2
|
||||
|
||||
#define IS_IMM_MODE() (gpsi && (gpsi->dwSRVIFlags & SRVINFO_IMM32))
|
||||
#define IS_CICERO_MODE() (gpsi && (gpsi->dwSRVIFlags & SRVINFO_CICERO_ENABLED))
|
||||
#define IS_CICERO_MODE() (gpsi && (gpsi->dwSRVIFlags & SRVINFO_CTFIME_ENABLED))
|
||||
#define IS_16BIT_MODE() (GetWin32ClientInfo()->dwTIFlags & TIF_16BIT)
|
||||
#define IS_CICERO_COMPAT_DISABLED() \
|
||||
(GetWin32ClientInfo()->dwCompatFlags2 & COMPAT_FLAG_2_CICERO_DISABLED)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue