Commit 2df68bd4 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

ddrawex: Build without -DWINE_NO_LONG_TYPES.

parent a23e0793
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = ddrawex.dll
IMPORTS = dxguid uuid ddraw ole32 advapi32
......
......@@ -69,7 +69,7 @@ static ULONG WINAPI ddrawex_class_factory_AddRef(IClassFactory *iface)
struct ddrawex_class_factory *factory = impl_from_IClassFactory(iface);
ULONG refcount = InterlockedIncrement(&factory->ref);
TRACE("%p increasing refcount to %u.\n", iface, refcount);
TRACE("%p increasing refcount to %lu.\n", iface, refcount);
return refcount;
}
......@@ -79,7 +79,7 @@ static ULONG WINAPI ddrawex_class_factory_Release(IClassFactory *iface)
struct ddrawex_class_factory *factory = impl_from_IClassFactory(iface);
ULONG refcount = InterlockedDecrement(&factory->ref);
TRACE("%p decreasing refcount to %u.\n", iface, refcount);
TRACE("%p decreasing refcount to %lu.\n", iface, refcount);
if (!refcount)
heap_free(factory);
......@@ -148,7 +148,7 @@ static ULONG WINAPI ddrawex_factory_AddRef(IDirectDrawFactory *iface)
struct ddrawex_factory *factory = impl_from_IDirectDrawFactory(iface);
ULONG refcount = InterlockedIncrement(&factory->ref);
TRACE("%p increasing refcount to %u.\n", iface, refcount);
TRACE("%p increasing refcount to %lu.\n", iface, refcount);
return refcount;
}
......@@ -158,7 +158,7 @@ static ULONG WINAPI ddrawex_factory_Release(IDirectDrawFactory *iface)
struct ddrawex_factory *factory = impl_from_IDirectDrawFactory(iface);
ULONG refcount = InterlockedDecrement(&factory->ref);
TRACE("%p decreasing refcount to %u.\n", iface, refcount);
TRACE("%p decreasing refcount to %lu.\n", iface, refcount);
if (!refcount)
heap_free(factory);
......
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