Commit 4f308b2b authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

netcfgx: Enable compilation with long types.

parent 29b016da
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = netcfgx.dll
IMPORTS = uuid
......
......@@ -98,7 +98,7 @@ static HRESULT WINAPI netcfgcf_CreateInstance(IClassFactory *iface,LPUNKNOWN pOu
}
else
{
WARN("Cannot create an instance object. 0x%08x\n", hr);
WARN("Cannot create an instance object. 0x%08lx\n", hr);
}
return hr;
}
......
......@@ -75,7 +75,7 @@ static ULONG WINAPI netcfg_AddRef(INetCfg *iface)
NetConfiguration *This = impl_from_INetCfg(iface);
ULONG ref = InterlockedIncrement(&This->ref);
TRACE("%p ref=%u\n", This, ref);
TRACE("%p ref=%lu\n", This, ref);
return ref;
}
......@@ -85,7 +85,7 @@ static ULONG WINAPI netcfg_Release(INetCfg *iface)
NetConfiguration *This = impl_from_INetCfg(iface);
ULONG ref = InterlockedDecrement(&This->ref);
TRACE("%p ref=%u\n", This, ref);
TRACE("%p ref=%lu\n", This, ref);
if (ref == 0)
{
......@@ -190,7 +190,7 @@ static HRESULT WINAPI netcfglock_AcquireWriteLock(INetCfgLock *iface, DWORD cmsT
LPCWSTR pszwClientDescription, LPWSTR *ppszwClientDescription)
{
NetConfiguration *This = impl_from_INetCfgLock(iface);
FIXME("%p %d %s %p\n", This, cmsTimeout, debugstr_w(pszwClientDescription), ppszwClientDescription);
FIXME("%p %ld %s %p\n", This, cmsTimeout, debugstr_w(pszwClientDescription), ppszwClientDescription);
return S_OK;
}
......
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