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
a84f9e6f
Commit
a84f9e6f
authored
Oct 12, 2007
by
Marcus Meissner
Committed by
Alexandre Julliard
Oct 12, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32: Avoid spamming the debug output.
parent
5a96cc14
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
6 deletions
+20
-6
imm.c
dlls/imm32/imm.c
+20
-6
No files found.
dlls/imm32/imm.c
View file @
a84f9e6f
...
...
@@ -1057,7 +1057,12 @@ BOOL WINAPI ImmGetConversionStatus(
*/
HWND
WINAPI
ImmGetDefaultIMEWnd
(
HWND
hWnd
)
{
FIXME
(
"(%p - %p %p ): semi-stub
\n
"
,
hWnd
,
hwndDefault
,
root_context
);
static
int
shown
=
0
;
if
(
!
shown
)
{
FIXME
(
"(%p - %p %p ): semi-stub
\n
"
,
hWnd
,
hwndDefault
,
root_context
);
shown
=
1
;
}
if
(
hwndDefault
==
NULL
)
{
...
...
@@ -1517,9 +1522,13 @@ BOOL WINAPI ImmRegisterWordW(
*/
BOOL
WINAPI
ImmReleaseContext
(
HWND
hWnd
,
HIMC
hIMC
)
{
FIXME
(
"(%p, %p): stub
\n
"
,
hWnd
,
hIMC
)
;
static
int
shown
=
0
;
return
TRUE
;
if
(
!
shown
)
{
FIXME
(
"(%p, %p): stub
\n
"
,
hWnd
,
hIMC
);
shown
=
1
;
}
return
TRUE
;
}
/***********************************************************************
...
...
@@ -1731,9 +1740,14 @@ BOOL WINAPI ImmSetCompositionWindow(
BOOL
WINAPI
ImmSetConversionStatus
(
HIMC
hIMC
,
DWORD
fdwConversion
,
DWORD
fdwSentence
)
{
FIXME
(
"(%p, %d, %d): stub
\n
"
,
hIMC
,
fdwConversion
,
fdwSentence
);
static
int
shown
=
0
;
if
(
!
shown
)
{
FIXME
(
"(%p, %d, %d): stub
\n
"
,
hIMC
,
fdwConversion
,
fdwSentence
);
shown
=
1
;
}
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
...
...
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