Commit 9da38cc0 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

actxprxy: Enable compilation with long types.

parent 14a5d71f
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = actxprxy.dll
IMPORTS = uuid oleaut32 ole32 rpcrt4
......
......@@ -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;
......
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