Commit 05f0b754 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

windows.globalization: Enable compilation with long types.

parent de205234
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = windows.globalization.dll MODULE = windows.globalization.dll
IMPORTS = combase uuid IMPORTS = combase uuid
......
...@@ -87,7 +87,7 @@ static ULONG STDMETHODCALLTYPE hstring_vector_AddRef(IVectorView_HSTRING *iface) ...@@ -87,7 +87,7 @@ static ULONG STDMETHODCALLTYPE hstring_vector_AddRef(IVectorView_HSTRING *iface)
{ {
struct hstring_vector *impl = impl_from_IVectorView_HSTRING(iface); struct hstring_vector *impl = impl_from_IVectorView_HSTRING(iface);
ULONG ref = InterlockedIncrement(&impl->ref); ULONG ref = InterlockedIncrement(&impl->ref);
TRACE("iface %p, ref %u.\n", iface, ref); TRACE("iface %p, ref %lu.\n", iface, ref);
return ref; return ref;
} }
...@@ -95,7 +95,7 @@ static ULONG STDMETHODCALLTYPE hstring_vector_Release(IVectorView_HSTRING *iface ...@@ -95,7 +95,7 @@ static ULONG STDMETHODCALLTYPE hstring_vector_Release(IVectorView_HSTRING *iface
{ {
struct hstring_vector *impl = impl_from_IVectorView_HSTRING(iface); struct hstring_vector *impl = impl_from_IVectorView_HSTRING(iface);
ULONG ref = InterlockedDecrement(&impl->ref); ULONG ref = InterlockedDecrement(&impl->ref);
TRACE("iface %p, ref %u.\n", iface, ref); TRACE("iface %p, ref %lu.\n", iface, ref);
if (ref == 0) if (ref == 0)
{ {
while (impl->count--) WindowsDeleteString(impl->values[impl->count]); while (impl->count--) WindowsDeleteString(impl->values[impl->count]);
...@@ -275,7 +275,7 @@ static ULONG STDMETHODCALLTYPE windows_globalization_AddRef( ...@@ -275,7 +275,7 @@ static ULONG STDMETHODCALLTYPE windows_globalization_AddRef(
{ {
struct windows_globalization *impl = impl_from_IActivationFactory(iface); struct windows_globalization *impl = impl_from_IActivationFactory(iface);
ULONG ref = InterlockedIncrement(&impl->ref); ULONG ref = InterlockedIncrement(&impl->ref);
TRACE("iface %p, ref %u.\n", iface, ref); TRACE("iface %p, ref %lu.\n", iface, ref);
return ref; return ref;
} }
...@@ -284,7 +284,7 @@ static ULONG STDMETHODCALLTYPE windows_globalization_Release( ...@@ -284,7 +284,7 @@ static ULONG STDMETHODCALLTYPE windows_globalization_Release(
{ {
struct windows_globalization *impl = impl_from_IActivationFactory(iface); struct windows_globalization *impl = impl_from_IActivationFactory(iface);
ULONG ref = InterlockedDecrement(&impl->ref); ULONG ref = InterlockedDecrement(&impl->ref);
TRACE("iface %p, ref %u.\n", iface, ref); TRACE("iface %p, ref %lu.\n", iface, ref);
return 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