From 1304d45011b22217a4bd48781b6f1734164ab7f8 Mon Sep 17 00:00:00 2001 From: Jesse Allen Date: Thu, 4 Mar 2004 06:06:44 +0000 Subject: [PATCH] Added ImmAssociateContextEx stub. --- dlls/imm32/imm.c | 9 +++++++++ dlls/imm32/imm32.spec | 1 + 2 files changed, 10 insertions(+) diff --git a/dlls/imm32/imm.c b/dlls/imm32/imm.c index ebc768f046b..219b83eb7c5 100644 --- a/dlls/imm32/imm.c +++ b/dlls/imm32/imm.c @@ -254,6 +254,15 @@ HIMC WINAPI ImmAssociateContext(HWND hWnd, HIMC hIMC) return (HIMC)NULL; } +/*********************************************************************** + * ImmAssociateContextEx (IMM32.@) + */ +BOOL WINAPI ImmAssociateContextEx(HWND hWnd, HIMC hIMC, DWORD dwFlags) +{ + FIXME("(%p, %p, %ld): stub\n", hWnd, hIMC, dwFlags); + return FALSE; +} + /*********************************************************************** * ImmConfigureIMEA (IMM32.@) */ diff --git a/dlls/imm32/imm32.spec b/dlls/imm32/imm32.spec index 96d674caf79..025a6850750 100644 --- a/dlls/imm32/imm32.spec +++ b/dlls/imm32/imm32.spec @@ -1,4 +1,5 @@ @ stdcall ImmAssociateContext(long long) +@ stdcall ImmAssociateContextEx(long long long) @ stdcall ImmConfigureIMEA(long long long ptr) @ stdcall ImmConfigureIMEW(long long long ptr) @ stdcall ImmCreateContext()