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
f9414028
Commit
f9414028
authored
Apr 09, 2008
by
Aric Stewart
Committed by
Alexandre Julliard
Apr 09, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32: Semi-stub implement ImmGetConversionList using loaded IME.
parent
35e14859
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
10 deletions
+32
-10
imm.c
dlls/imm32/imm.c
+32
-10
No files found.
dlls/imm32/imm.c
View file @
f9414028
...
...
@@ -1027,11 +1027,22 @@ DWORD WINAPI ImmGetConversionListA(
LPCSTR
pSrc
,
LPCANDIDATELIST
lpDst
,
DWORD
dwBufLen
,
UINT
uFlag
)
{
FIXME
(
"(%p, %p, %s, %p, %d, %d): stub
\n
"
,
hKL
,
hIMC
,
debugstr_a
(
pSrc
),
lpDst
,
dwBufLen
,
uFlag
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
ImmHkl
*
immHkl
=
IMM_GetImmHkl
(
hKL
);
TRACE
(
"(%p, %p, %s, %p, %d, %d):
\n
"
,
hKL
,
hIMC
,
debugstr_a
(
pSrc
),
lpDst
,
dwBufLen
,
uFlag
);
if
(
immHkl
->
hIME
&&
immHkl
->
pImeConversionList
)
{
if
(
!
is_kbd_ime_unicode
(
immHkl
))
return
immHkl
->
pImeConversionList
(
hIMC
,(
LPCWSTR
)
pSrc
,
lpDst
,
dwBufLen
,
uFlag
);
else
{
FIXME
(
"A procedure called with W ime back end
\n
"
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
}
else
return
0
;
}
/***********************************************************************
...
...
@@ -1042,11 +1053,22 @@ DWORD WINAPI ImmGetConversionListW(
LPCWSTR
pSrc
,
LPCANDIDATELIST
lpDst
,
DWORD
dwBufLen
,
UINT
uFlag
)
{
FIXME
(
"(%p, %p, %s, %p, %d, %d): stub
\n
"
,
hKL
,
hIMC
,
debugstr_w
(
pSrc
),
lpDst
,
dwBufLen
,
uFlag
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
ImmHkl
*
immHkl
=
IMM_GetImmHkl
(
hKL
);
TRACE
(
"(%p, %p, %s, %p, %d, %d):
\n
"
,
hKL
,
hIMC
,
debugstr_w
(
pSrc
),
lpDst
,
dwBufLen
,
uFlag
);
if
(
immHkl
->
hIME
&&
immHkl
->
pImeConversionList
)
{
if
(
is_kbd_ime_unicode
(
immHkl
))
return
immHkl
->
pImeConversionList
(
hIMC
,
pSrc
,
lpDst
,
dwBufLen
,
uFlag
);
else
{
FIXME
(
"W procedure called with A ime back end
\n
"
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
}
else
return
0
;
}
/***********************************************************************
...
...
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