Commit de205234 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

windows.devices.enumeration: Enable compilation with long types.

parent fe017525
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = windows.devices.enumeration.dll
IMPORTS = combase uuid
......
......@@ -82,7 +82,7 @@ static ULONG STDMETHODCALLTYPE windows_devices_enumeration_AddRef(
{
struct windows_devices_enumeration *impl = impl_from_IActivationFactory(iface);
ULONG ref = InterlockedIncrement(&impl->ref);
TRACE("iface %p, ref %u.\n", iface, ref);
TRACE("iface %p, ref %lu.\n", iface, ref);
return ref;
}
......@@ -91,7 +91,7 @@ static ULONG STDMETHODCALLTYPE windows_devices_enumeration_Release(
{
struct windows_devices_enumeration *impl = impl_from_IActivationFactory(iface);
ULONG ref = InterlockedDecrement(&impl->ref);
TRACE("iface %p, ref %u.\n", iface, ref);
TRACE("iface %p, ref %lu.\n", iface, ref);
return ref;
}
......
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