msimtf: Enable compilation with long types.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-02-15 07:29:54 +01:00 committed by Alexandre Julliard
parent ef587a763d
commit 095fc3de01
2 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,3 @@
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = msimtf.dll
IMPORTS = uuid imm32

View File

@ -660,7 +660,7 @@ static HRESULT WINAPI ActiveIMMApp_Deactivate(IActiveIMMApp* This)
static HRESULT WINAPI ActiveIMMApp_OnDefWindowProc(IActiveIMMApp* This,
HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam, LRESULT *plResult)
{
FIXME("Stub (%p %x %lx %lx)\n",hWnd,Msg,wParam,lParam);
FIXME("Stub (%p %x %Ix %Ix)\n",hWnd,Msg,wParam,lParam);
return E_FAIL;
}
@ -871,7 +871,7 @@ static HRESULT WINAPI ActiveIMMMessagePumpOwner_Resume(IActiveIMMMessagePumpOwne
DWORD cookie)
{
ActiveIMMApp *This = impl_from_IActiveIMMMessagePumpOwner(iface);
FIXME("(%p)->(%u): stub\n", This, cookie);
FIXME("(%p)->(%lu): stub\n", This, cookie);
return E_NOTIMPL;
}