mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 15:33:12 +00:00
[IMM32] Rewrite ImmGetCompositionFontA/W (#3813)
- Rewrite ImmGetCompositionFontA and ImmGetCompositionFontW functions. - Add INIT_* macro definitions in <ddk/imm.h>. CORE-11700
This commit is contained in:
parent
ee3b5b44c1
commit
1558e6d0b3
2 changed files with 82 additions and 14 deletions
|
@ -87,6 +87,14 @@ C_ASSERT(offsetof(INPUTCONTEXT, dwReserve) == 0x134);
|
|||
C_ASSERT(sizeof(INPUTCONTEXT) == 0x140);
|
||||
#endif
|
||||
|
||||
// bits of fdwInit of INPUTCONTEXT
|
||||
#define INIT_STATUSWNDPOS 0x00000001
|
||||
#define INIT_CONVERSION 0x00000002
|
||||
#define INIT_SENTENCE 0x00000004
|
||||
#define INIT_LOGFONT 0x00000008
|
||||
#define INIT_COMPFORM 0x00000010
|
||||
#define INIT_SOFTKBDPOS 0x00000020
|
||||
|
||||
LPINPUTCONTEXT WINAPI ImmLockIMC(HIMC);
|
||||
|
||||
#endif /* _WINE_IMM_H_ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue