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:
parent
ef587a763d
commit
095fc3de01
|
@ -1,4 +1,3 @@
|
|||
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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue