Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
a4d4c07c
Commit
a4d4c07c
authored
Dec 08, 2008
by
Aric Stewart
Committed by
Alexandre Julliard
Dec 09, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32: Implement W/A handling in ImmEscape.
parent
c58541e2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
8 deletions
+38
-8
imm.c
dlls/imm32/imm.c
+38
-8
No files found.
dlls/imm32/imm.c
View file @
a4d4c07c
...
...
@@ -778,6 +778,16 @@ UINT WINAPI ImmEnumRegisterWordW(
return
0
;
}
static
inline
BOOL
EscapeRequiresWA
(
UINT
uEscape
)
{
if
(
uEscape
==
IME_ESC_GET_EUDC_DICTIONARY
||
uEscape
==
IME_ESC_SET_EUDC_DICTIONARY
||
uEscape
==
IME_ESC_IME_NAME
||
uEscape
==
IME_ESC_GETHELPFILENAME
)
return
TRUE
;
return
FALSE
;
}
/***********************************************************************
* ImmEscapeA (IMM32.@)
*/
...
...
@@ -790,13 +800,23 @@ LRESULT WINAPI ImmEscapeA(
if
(
immHkl
->
hIME
&&
immHkl
->
pImeEscape
)
{
if
(
!
is_kbd_ime_unicode
(
immHkl
))
if
(
!
EscapeRequiresWA
(
uEscape
)
||
!
is_kbd_ime_unicode
(
immHkl
))
return
immHkl
->
pImeEscape
(
hIMC
,
uEscape
,
lpData
);
else
{
FIXME
(
"A procedure called with W ime back end
\n
"
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
WCHAR
buffer
[
81
];
/* largest required buffer should be 80 */
LRESULT
rc
;
if
(
uEscape
==
IME_ESC_SET_EUDC_DICTIONARY
)
{
MultiByteToWideChar
(
CP_ACP
,
0
,(
LPSTR
)
lpData
,
-
1
,
buffer
,
81
);
rc
=
immHkl
->
pImeEscape
(
hIMC
,
uEscape
,
buffer
);
}
else
{
rc
=
immHkl
->
pImeEscape
(
hIMC
,
uEscape
,
buffer
);
WideCharToMultiByte
(
CP_ACP
,
0
,
buffer
,
-
1
,(
LPSTR
)
lpData
,
80
,
NULL
,
NULL
);
}
return
rc
;
}
}
else
...
...
@@ -815,13 +835,23 @@ LRESULT WINAPI ImmEscapeW(
if
(
immHkl
->
hIME
&&
immHkl
->
pImeEscape
)
{
if
(
is_kbd_ime_unicode
(
immHkl
))
if
(
!
EscapeRequiresWA
(
uEscape
)
||
is_kbd_ime_unicode
(
immHkl
))
return
immHkl
->
pImeEscape
(
hIMC
,
uEscape
,
lpData
);
else
{
FIXME
(
"W procedure called with A ime back end
\n
"
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
CHAR
buffer
[
81
];
/* largest required buffer should be 80 */
LRESULT
rc
;
if
(
uEscape
==
IME_ESC_SET_EUDC_DICTIONARY
)
{
WideCharToMultiByte
(
CP_ACP
,
0
,(
LPWSTR
)
lpData
,
-
1
,
buffer
,
81
,
NULL
,
NULL
);
rc
=
immHkl
->
pImeEscape
(
hIMC
,
uEscape
,
buffer
);
}
else
{
rc
=
immHkl
->
pImeEscape
(
hIMC
,
uEscape
,
buffer
);
MultiByteToWideChar
(
CP_ACP
,
0
,
buffer
,
-
1
,(
LPWSTR
)
lpData
,
80
);
}
return
rc
;
}
}
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment