Commit 095fc3de authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

msimtf: Enable compilation with long types.

parent ef587a76
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = msimtf.dll
IMPORTS = uuid imm32
......
......@@ -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;
}
......
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