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
46d3762a
Commit
46d3762a
authored
Feb 04, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Feb 04, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32: Remove FIXME messages from some implemented functions.
parent
cbe8ea05
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
imm.c
dlls/imm32/imm.c
+10
-10
No files found.
dlls/imm32/imm.c
View file @
46d3762a
...
...
@@ -260,6 +260,7 @@ HIMC WINAPI ImmAssociateContext(HWND hWnd, HIMC hIMC)
BOOL
WINAPI
ImmAssociateContextEx
(
HWND
hWnd
,
HIMC
hIMC
,
DWORD
dwFlags
)
{
FIXME
(
"(%p, %p, %ld): stub
\n
"
,
hWnd
,
hIMC
,
dwFlags
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
...
...
@@ -577,12 +578,10 @@ LONG WINAPI ImmGetCompositionStringW(
HIMC
hIMC
,
DWORD
dwIndex
,
LPVOID
lpBuf
,
DWORD
dwBufLen
)
{
LONG
rc
=
0
;
InputContextData
*
data
=
(
InputContextData
*
)
hIMC
;
LONG
rc
=
0
;
InputContextData
*
data
=
(
InputContextData
*
)
hIMC
;
TRACE
(
"(%p, 0x%lx, %p, %ld)
\n
"
,
hIMC
,
dwIndex
,
lpBuf
,
dwBufLen
);
TRACE
(
"(%p, 0x%lx, %p, %ld)
\n
"
,
hIMC
,
dwIndex
,
lpBuf
,
dwBufLen
);
if
(
!
data
)
return
FALSE
;
...
...
@@ -671,7 +670,7 @@ BOOL WINAPI ImmGetCompositionWindow(HIMC hIMC, LPCOMPOSITIONFORM lpCompForm)
*/
HIMC
WINAPI
ImmGetContext
(
HWND
hWnd
)
{
FIXME
(
"(%p): stub
\n
"
,
hWnd
);
TRACE
(
"%p
\n
"
,
hWnd
);
if
(
!
root_context
)
return
NULL
;
...
...
@@ -935,7 +934,6 @@ UINT WINAPI ImmGetVirtualKey(HWND hWnd)
{
OSVERSIONINFOA
version
;
FIXME
(
"(%p): stub
\n
"
,
hWnd
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
GetVersionExA
(
&
version
);
switch
(
version
.
dwPlatformId
)
{
...
...
@@ -1047,7 +1045,8 @@ BOOL WINAPI ImmNotifyIME(
HIMC
hIMC
,
DWORD
dwAction
,
DWORD
dwIndex
,
DWORD
dwValue
)
{
BOOL
rc
=
FALSE
;
FIXME
(
"(%p, %ld, %ld, %ld): stub
\n
"
,
TRACE
(
"(%p, %ld, %ld, %ld)
\n
"
,
hIMC
,
dwAction
,
dwIndex
,
dwValue
);
if
(
!
root_context
)
...
...
@@ -1377,7 +1376,7 @@ BOOL WINAPI ImmSetCompositionWindow(
ShowWindow
(
hwndDefault
,
SW_HIDE
);
}
FIXME
(
"STUB
\n
"
);
/* FIXME: this is a partial stub */
if
(
reshow
)
ShowWindow
(
hwndDefault
,
SW_SHOWNOACTIVATE
);
...
...
@@ -1405,7 +1404,8 @@ BOOL WINAPI ImmSetConversionStatus(
BOOL
WINAPI
ImmSetOpenStatus
(
HIMC
hIMC
,
BOOL
fOpen
)
{
InputContextData
*
data
=
(
InputContextData
*
)
hIMC
;
FIXME
(
"Semi-Stub
\n
"
);
TRACE
(
"%p %d
\n
"
,
hIMC
,
fOpen
);
if
(
hIMC
==
(
HIMC
)
FROM_IME
)
{
...
...
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