diff --git a/dlls/msimtf/Makefile.in b/dlls/msimtf/Makefile.in index e79334679a3..c76c274969c 100644 --- a/dlls/msimtf/Makefile.in +++ b/dlls/msimtf/Makefile.in @@ -1,4 +1,3 @@ -EXTRADEFS = -DWINE_NO_LONG_TYPES MODULE = msimtf.dll IMPORTS = uuid imm32 diff --git a/dlls/msimtf/activeimmapp.c b/dlls/msimtf/activeimmapp.c index 5dec79e4b29..9d3318bf017 100644 --- a/dlls/msimtf/activeimmapp.c +++ b/dlls/msimtf/activeimmapp.c @@ -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; }