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
26e22f18
Commit
26e22f18
authored
Feb 23, 2007
by
Aric Stewart
Committed by
Alexandre Julliard
Feb 23, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32: Implement GSC_RESULTCLAUSE.
parent
19daedff
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
imm.c
dlls/imm32/imm.c
+15
-0
No files found.
dlls/imm32/imm.c
View file @
26e22f18
...
...
@@ -563,6 +563,21 @@ LONG WINAPI ImmGetCompositionStringA(
}
rc
=
sizeof
(
DWORD
)
*
2
;
}
else
if
(
dwIndex
==
GCS_RESULTCLAUSE
)
{
TRACE
(
"GSC_RESULTCLAUSE %p %i
\n
"
,
data
->
ResultString
,
data
->
dwResultStringSize
);
rc
=
WideCharToMultiByte
(
CP_ACP
,
0
,
(
LPWSTR
)
data
->
ResultString
,
data
->
dwResultStringSize
/
sizeof
(
WCHAR
),
NULL
,
0
,
NULL
,
NULL
);
if
(
dwBufLen
>=
sizeof
(
DWORD
)
*
2
)
{
((
LPDWORD
)
lpBuf
)[
0
]
=
0
;
((
LPDWORD
)
lpBuf
)[
1
]
=
rc
;
}
rc
=
sizeof
(
DWORD
)
*
2
;
}
else
{
FIXME
(
"Unhandled index 0x%x
\n
"
,
dwIndex
);
...
...
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