Skip to content

Commit

Permalink
imm32: Add CtfImmIsCiceroEnabled stub.
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkShadow44 authored and julliard committed Apr 11, 2024
1 parent 8911170 commit 72987ff
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions dlls/imm32/imm.c
Original file line number Diff line number Diff line change
Expand Up @@ -3322,3 +3322,13 @@ LRESULT WINAPI __wine_ime_wnd_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lp
else
return DefWindowProcW(hwnd, msg, wparam, lparam);
}

/***********************************************************************
* CtfImmIsCiceroEnabled (IMM32.@)
*/
BOOL WINAPI CtfImmIsCiceroEnabled(void)
{
FIXME("(): stub\n");
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
2 changes: 1 addition & 1 deletion dlls/imm32/imm32.spec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
@ stub CtfImmGetIMEFileName
@ stub CtfImmGetTMAEFlags
@ stub CtfImmHideToolbarWnd
@ stub CtfImmIsCiceroEnabled
@ stdcall CtfImmIsCiceroEnabled()
@ stub CtfImmIsCiceroStartedInThread
@ stub CtfImmIsGuidMapEnable
@ stub CtfImmIsTextFrameServiceDisabled
Expand Down

0 comments on commit 72987ff

Please sign in to comment.