Eric Pouech : actxprxy: Enable compilation with long types.

Alexandre Julliard julliard at winehq.org
Tue Feb 8 16:11:44 CST 2022


Module: wine
Branch: master
Commit: 9da38cc0e72c4760b2573f2ec94f3395e7c6bb02
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=9da38cc0e72c4760b2573f2ec94f3395e7c6bb02

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Mon Feb  7 23:10:15 2022 +0100

actxprxy: Enable compilation with long types.

Signed-off-by: Eric Pouech <eric.pouech at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/actxprxy/Makefile.in  | 1 -
 dlls/actxprxy/usrmarshal.c | 4 ++--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/dlls/actxprxy/Makefile.in b/dlls/actxprxy/Makefile.in
index bdb4fcb1ecb..a4618bd560f 100644
--- a/dlls/actxprxy/Makefile.in
+++ b/dlls/actxprxy/Makefile.in
@@ -1,4 +1,3 @@
-EXTRADEFS = -DWINE_NO_LONG_TYPES
 MODULE    = actxprxy.dll
 IMPORTS   = uuid oleaut32 ole32 rpcrt4
 
diff --git a/dlls/actxprxy/usrmarshal.c b/dlls/actxprxy/usrmarshal.c
index 7197ff86a98..33db1327a8d 100644
--- a/dlls/actxprxy/usrmarshal.c
+++ b/dlls/actxprxy/usrmarshal.c
@@ -175,7 +175,7 @@ HRESULT CALLBACK IEnumShellItems_Next_Proxy(
     ULONG *pceltFetched)
 {
     ULONG fetched;
-    TRACE("(%p)->(%d, %p, %p)\n", This, celt, rgelt, pceltFetched);
+    TRACE("(%p)->(%ld, %p, %p)\n", This, celt, rgelt, pceltFetched);
     if (!pceltFetched) pceltFetched = &fetched;
     return IEnumShellItems_RemoteNext_Proxy(This, celt, rgelt, pceltFetched);
 }
@@ -187,7 +187,7 @@ HRESULT __RPC_STUB IEnumShellItems_Next_Stub(
     ULONG *pceltFetched)
 {
     HRESULT hr;
-    TRACE("(%p)->(%d, %p, %p)\n", This, celt, rgelt, pceltFetched);
+    TRACE("(%p)->(%ld, %p, %p)\n", This, celt, rgelt, pceltFetched);
     *pceltFetched = 0;
     hr = IEnumShellItems_Next(This, celt, rgelt, pceltFetched);
     if (hr == S_OK) *pceltFetched = celt;




More information about the wine-cvs mailing list