mirror of
https://github.com/reactos/wine.git
synced 2025-02-03 10:43:30 +00:00
imm32: Avoid spamming the debug output.
This commit is contained in:
parent
5a96cc146c
commit
a84f9e6f69
@ -1057,7 +1057,12 @@ BOOL WINAPI ImmGetConversionStatus(
|
|||||||
*/
|
*/
|
||||||
HWND WINAPI ImmGetDefaultIMEWnd(HWND hWnd)
|
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)
|
if (hwndDefault == NULL)
|
||||||
{
|
{
|
||||||
@ -1517,9 +1522,13 @@ BOOL WINAPI ImmRegisterWordW(
|
|||||||
*/
|
*/
|
||||||
BOOL WINAPI ImmReleaseContext(HWND hWnd, HIMC hIMC)
|
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(
|
BOOL WINAPI ImmSetConversionStatus(
|
||||||
HIMC hIMC, DWORD fdwConversion, DWORD fdwSentence)
|
HIMC hIMC, DWORD fdwConversion, DWORD fdwSentence)
|
||||||
{
|
{
|
||||||
FIXME("(%p, %d, %d): stub\n",
|
static int shown = 0;
|
||||||
hIMC, fdwConversion, fdwSentence
|
|
||||||
);
|
if (!shown) {
|
||||||
|
FIXME("(%p, %d, %d): stub\n",
|
||||||
|
hIMC, fdwConversion, fdwSentence
|
||||||
|
);
|
||||||
|
shown = 1;
|
||||||
|
}
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user