Commit 228579ec authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

netprofm: Enable compilation with long types.

parent f793d17c
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = netprofm.dll MODULE = netprofm.dll
IMPORTS = iphlpapi IMPORTS = iphlpapi
......
...@@ -226,7 +226,7 @@ static HRESULT WINAPI connection_point_Unadvise( ...@@ -226,7 +226,7 @@ static HRESULT WINAPI connection_point_Unadvise(
struct connection_point *cp = impl_from_IConnectionPoint( iface ); struct connection_point *cp = impl_from_IConnectionPoint( iface );
struct sink_entry *iter; struct sink_entry *iter;
TRACE( "%p, %d\n", cp, cookie ); TRACE( "%p, %ld\n", cp, cookie );
LIST_FOR_EACH_ENTRY( iter, &cp->sinks, struct sink_entry, entry ) LIST_FOR_EACH_ENTRY( iter, &cp->sinks, struct sink_entry, entry )
{ {
...@@ -779,7 +779,7 @@ static HRESULT WINAPI networks_enum_Next( ...@@ -779,7 +779,7 @@ static HRESULT WINAPI networks_enum_Next(
struct networks_enum *iter = impl_from_IEnumNetworks( iface ); struct networks_enum *iter = impl_from_IEnumNetworks( iface );
ULONG i = 0; ULONG i = 0;
TRACE( "%p, %u %p %p\n", iter, count, ret, fetched ); TRACE( "%p, %lu %p %p\n", iter, count, ret, fetched );
if (fetched) *fetched = 0; if (fetched) *fetched = 0;
if (!count) return S_OK; if (!count) return S_OK;
...@@ -802,7 +802,7 @@ static HRESULT WINAPI networks_enum_Skip( ...@@ -802,7 +802,7 @@ static HRESULT WINAPI networks_enum_Skip(
{ {
struct networks_enum *iter = impl_from_IEnumNetworks( iface ); struct networks_enum *iter = impl_from_IEnumNetworks( iface );
TRACE( "%p, %u\n", iter, count); TRACE( "%p, %lu\n", iter, count);
if (!count) return S_OK; if (!count) return S_OK;
if (!iter->cursor) return S_FALSE; if (!iter->cursor) return S_FALSE;
...@@ -999,7 +999,7 @@ static HRESULT WINAPI connections_enum_Next( ...@@ -999,7 +999,7 @@ static HRESULT WINAPI connections_enum_Next(
struct connections_enum *iter = impl_from_IEnumNetworkConnections( iface ); struct connections_enum *iter = impl_from_IEnumNetworkConnections( iface );
ULONG i = 0; ULONG i = 0;
TRACE( "%p, %u %p %p\n", iter, count, ret, fetched ); TRACE( "%p, %lu %p %p\n", iter, count, ret, fetched );
if (!ret) return E_POINTER; if (!ret) return E_POINTER;
*ret = NULL; *ret = NULL;
...@@ -1024,7 +1024,7 @@ static HRESULT WINAPI connections_enum_Skip( ...@@ -1024,7 +1024,7 @@ static HRESULT WINAPI connections_enum_Skip(
{ {
struct connections_enum *iter = impl_from_IEnumNetworkConnections( iface ); struct connections_enum *iter = impl_from_IEnumNetworkConnections( iface );
TRACE( "%p, %u\n", iter, count); TRACE( "%p, %lu\n", iter, count);
if (!count) return S_OK; if (!count) return S_OK;
if (!iter->cursor) return S_FALSE; if (!iter->cursor) return S_FALSE;
......
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