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
6302b965
Commit
6302b965
authored
Jun 29, 2007
by
Aric Stewart
Committed by
Alexandre Julliard
Jul 02, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32: Implementation of GCS_CURSORPOS.
parent
b28c41f1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
imm.c
dlls/imm32/imm.c
+12
-0
No files found.
dlls/imm32/imm.c
View file @
6302b965
...
...
@@ -590,6 +590,13 @@ LONG WINAPI ImmGetCompositionStringA(
}
rc
=
sizeof
(
DWORD
)
*
2
;
}
else
if
(
dwIndex
==
GCS_CURSORPOS
)
{
TRACE
(
"GSC_CURSORPOS
\n
"
);
rc
=
WideCharToMultiByte
(
CP_ACP
,
0
,
(
LPWSTR
)
data
->
CompositionString
,
data
->
dwCompStringLength
/
sizeof
(
WCHAR
),
NULL
,
0
,
NULL
,
NULL
);
}
else
{
FIXME
(
"Unhandled index 0x%x
\n
"
,
dwIndex
);
...
...
@@ -667,6 +674,11 @@ LONG WINAPI ImmGetCompositionStringW(
rc
=
data
->
dwCompReadStringSize
;
}
else
if
(
dwIndex
==
GCS_CURSORPOS
)
{
TRACE
(
"GSC_CURSORPOS
\n
"
);
rc
=
data
->
dwCompStringLength
;
}
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