Removed W->A from DEFWND_ImmIsUIMessageW.

This commit is contained in:
Stefan Leichter 2004-11-21 15:44:56 +00:00 committed by Alexandre Julliard
parent 0500a7d993
commit c39deb5d63
1 changed files with 3 additions and 1 deletions

View File

@ -299,7 +299,9 @@ static BOOL DEFWND_ImmIsUIMessageA( HWND hwndIME, UINT msg, WPARAM wParam, LPARA
static BOOL DEFWND_ImmIsUIMessageW( HWND hwndIME, UINT msg, WPARAM wParam, LPARAM lParam )
{
HINSTANCE hInstIMM = GetModuleHandleA( "imm32" );
static const WCHAR imm32W[] = {'i','m','m','3','2',0};
HINSTANCE hInstIMM = GetModuleHandleW( imm32W );
BOOL (WINAPI *pFunc)(HWND,UINT,WPARAM,LPARAM);
BOOL fRet = FALSE;