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

propsys: Enable compilation with long types.

parent 08332f4d
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = propsys.dll MODULE = propsys.dll
IMPORTLIB = propsys IMPORTLIB = propsys
IMPORTS = ole32 oleaut32 uuid IMPORTS = ole32 oleaut32 uuid
......
...@@ -92,7 +92,7 @@ static ULONG WINAPI PropertyStore_AddRef(IPropertyStoreCache *iface) ...@@ -92,7 +92,7 @@ static ULONG WINAPI PropertyStore_AddRef(IPropertyStoreCache *iface)
PropertyStore *This = impl_from_IPropertyStoreCache(iface); PropertyStore *This = impl_from_IPropertyStoreCache(iface);
ULONG ref = InterlockedIncrement(&This->ref); ULONG ref = InterlockedIncrement(&This->ref);
TRACE("(%p) refcount=%u\n", iface, ref); TRACE("(%p) refcount=%lu\n", iface, ref);
return ref; return ref;
} }
...@@ -113,7 +113,7 @@ static ULONG WINAPI PropertyStore_Release(IPropertyStoreCache *iface) ...@@ -113,7 +113,7 @@ static ULONG WINAPI PropertyStore_Release(IPropertyStoreCache *iface)
PropertyStore *This = impl_from_IPropertyStoreCache(iface); PropertyStore *This = impl_from_IPropertyStoreCache(iface);
ULONG ref = InterlockedDecrement(&This->ref); ULONG ref = InterlockedDecrement(&This->ref);
TRACE("(%p) refcount=%u\n", iface, ref); TRACE("(%p) refcount=%lu\n", iface, ref);
if (ref == 0) if (ref == 0)
{ {
...@@ -159,7 +159,7 @@ static HRESULT WINAPI PropertyStore_GetAt(IPropertyStoreCache *iface, ...@@ -159,7 +159,7 @@ static HRESULT WINAPI PropertyStore_GetAt(IPropertyStoreCache *iface,
propstore_value *value; propstore_value *value;
HRESULT hr; HRESULT hr;
TRACE("%p,%d,%p\n", iface, iProp, pkey); TRACE("%p,%ld,%p\n", iface, iProp, pkey);
if (!pkey) if (!pkey)
return E_POINTER; return E_POINTER;
...@@ -478,7 +478,7 @@ HRESULT WINAPI PSCreatePropertyStoreFromObject(IUnknown *obj, DWORD access, REFI ...@@ -478,7 +478,7 @@ HRESULT WINAPI PSCreatePropertyStoreFromObject(IUnknown *obj, DWORD access, REFI
{ {
HRESULT hr; HRESULT hr;
TRACE("(%p, %d, %s, %p)\n", obj, access, debugstr_guid(riid), ret); TRACE("(%p, %ld, %s, %p)\n", obj, access, debugstr_guid(riid), ret);
if (!obj || !ret) if (!obj || !ret)
return E_POINTER; return E_POINTER;
......
...@@ -157,7 +157,7 @@ static HRESULT WINAPI propsys_FormatForDisplay(IPropertySystem *iface, ...@@ -157,7 +157,7 @@ static HRESULT WINAPI propsys_FormatForDisplay(IPropertySystem *iface,
REFPROPERTYKEY key, REFPROPVARIANT propvar, PROPDESC_FORMAT_FLAGS flags, REFPROPERTYKEY key, REFPROPVARIANT propvar, PROPDESC_FORMAT_FLAGS flags,
LPWSTR dest, DWORD destlen) LPWSTR dest, DWORD destlen)
{ {
FIXME("%p %p %x %p %d: stub\n", key, propvar, flags, dest, destlen); FIXME("%p %p %x %p %ld: stub\n", key, propvar, flags, dest, destlen);
return E_NOTIMPL; return E_NOTIMPL;
} }
......
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