actxprxy: 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
14a5d71f39
commit
9da38cc0e7
|
@ -1,4 +1,3 @@
|
|||
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;
|
||||
|
|
Loading…
Reference in New Issue