Commit bcc2337f authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

imm32: Stub ImmActivateLayout.

parent b48a6593
...@@ -564,6 +564,12 @@ static void ime_release( struct ime *ime ) ...@@ -564,6 +564,12 @@ static void ime_release( struct ime *ime )
LeaveCriticalSection( &ime_cs ); LeaveCriticalSection( &ime_cs );
} }
BOOL WINAPI ImmActivateLayout( HKL hkl )
{
FIXME( "hkl %p stub!\n", hkl );
return FALSE;
}
static BOOL free_input_context_data( HIMC hIMC ) static BOOL free_input_context_data( HIMC hIMC )
{ {
struct imc *data = query_imc_data( hIMC ); struct imc *data = query_imc_data( hIMC );
......
@ stub ImmActivateLayout @ stdcall ImmActivateLayout(long)
@ stdcall ImmAssociateContext(long long) @ stdcall ImmAssociateContext(long long)
@ stdcall ImmAssociateContextEx(long long long) @ stdcall ImmAssociateContextEx(long long long)
@ stdcall ImmConfigureIMEA(long long long ptr) @ stdcall ImmConfigureIMEA(long long long ptr)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment