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
51175319
Commit
51175319
authored
Apr 16, 2008
by
ByeongSik Jeon
Committed by
Alexandre Julliard
Apr 17, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32: Implement ImmSetConversionStatus.
parent
91716472
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
9 deletions
+20
-9
imm.c
dlls/imm32/imm.c
+20
-9
No files found.
dlls/imm32/imm.c
View file @
51175319
...
...
@@ -1761,16 +1761,27 @@ BOOL WINAPI ImmSetCompositionWindow(
BOOL
WINAPI
ImmSetConversionStatus
(
HIMC
hIMC
,
DWORD
fdwConversion
,
DWORD
fdwSentence
)
{
static
int
shown
=
0
;
InputContextData
*
data
=
(
InputContextData
*
)
hIMC
;
if
(
!
shown
)
{
FIXME
(
"(%p, %d, %d): stub
\n
"
,
hIMC
,
fdwConversion
,
fdwSentence
);
shown
=
1
;
}
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
TRACE
(
"%p %d %d
\n
"
,
hIMC
,
fdwConversion
,
fdwSentence
);
if
(
!
data
)
return
FALSE
;
if
(
fdwConversion
!=
data
->
IMC
.
fdwConversion
)
{
data
->
IMC
.
fdwConversion
=
fdwConversion
;
ImmNotifyIME
(
hIMC
,
NI_CONTEXTUPDATED
,
0
,
IMC_SETCONVERSIONMODE
);
ImmInternalSendIMENotify
(
data
,
IMN_SETCONVERSIONMODE
,
0
);
}
if
(
fdwSentence
!=
data
->
IMC
.
fdwSentence
)
{
data
->
IMC
.
fdwSentence
=
fdwSentence
;
ImmNotifyIME
(
hIMC
,
NI_CONTEXTUPDATED
,
0
,
IMC_SETSENTENCEMODE
);
ImmInternalSendIMENotify
(
data
,
IMN_SETSENTENCEMODE
,
0
);
}
return
TRUE
;
}
/***********************************************************************
...
...
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