Module: wine Branch: master Commit: 095fc3de01cfdfdceec3c35160d4403f8bccff40 URL: https://source.winehq.org/git/wine.git/?a=commit;h=095fc3de01cfdfdceec3c3516...
Author: Eric Pouech eric.pouech@gmail.com Date: Tue Feb 15 07:29:54 2022 +0100
msimtf: Enable compilation with long types.
Signed-off-by: Eric Pouech eric.pouech@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/msimtf/Makefile.in | 1 - dlls/msimtf/activeimmapp.c | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-)
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; }