Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
228579ec
Commit
228579ec
authored
Feb 16, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 16, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netprofm: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f793d17c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
Makefile.in
dlls/netprofm/Makefile.in
+0
-1
list.c
dlls/netprofm/list.c
+5
-5
No files found.
dlls/netprofm/Makefile.in
View file @
228579ec
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
netprofm.dll
IMPORTS
=
iphlpapi
...
...
dlls/netprofm/list.c
View file @
228579ec
...
...
@@ -226,7 +226,7 @@ static HRESULT WINAPI connection_point_Unadvise(
struct
connection_point
*
cp
=
impl_from_IConnectionPoint
(
iface
);
struct
sink_entry
*
iter
;
TRACE
(
"%p, %d
\n
"
,
cp
,
cookie
);
TRACE
(
"%p, %
l
d
\n
"
,
cp
,
cookie
);
LIST_FOR_EACH_ENTRY
(
iter
,
&
cp
->
sinks
,
struct
sink_entry
,
entry
)
{
...
...
@@ -779,7 +779,7 @@ static HRESULT WINAPI networks_enum_Next(
struct
networks_enum
*
iter
=
impl_from_IEnumNetworks
(
iface
);
ULONG
i
=
0
;
TRACE
(
"%p, %u %p %p
\n
"
,
iter
,
count
,
ret
,
fetched
);
TRACE
(
"%p, %
l
u %p %p
\n
"
,
iter
,
count
,
ret
,
fetched
);
if
(
fetched
)
*
fetched
=
0
;
if
(
!
count
)
return
S_OK
;
...
...
@@ -802,7 +802,7 @@ static HRESULT WINAPI networks_enum_Skip(
{
struct
networks_enum
*
iter
=
impl_from_IEnumNetworks
(
iface
);
TRACE
(
"%p, %u
\n
"
,
iter
,
count
);
TRACE
(
"%p, %
l
u
\n
"
,
iter
,
count
);
if
(
!
count
)
return
S_OK
;
if
(
!
iter
->
cursor
)
return
S_FALSE
;
...
...
@@ -999,7 +999,7 @@ static HRESULT WINAPI connections_enum_Next(
struct
connections_enum
*
iter
=
impl_from_IEnumNetworkConnections
(
iface
);
ULONG
i
=
0
;
TRACE
(
"%p, %u %p %p
\n
"
,
iter
,
count
,
ret
,
fetched
);
TRACE
(
"%p, %
l
u %p %p
\n
"
,
iter
,
count
,
ret
,
fetched
);
if
(
!
ret
)
return
E_POINTER
;
*
ret
=
NULL
;
...
...
@@ -1024,7 +1024,7 @@ static HRESULT WINAPI connections_enum_Skip(
{
struct
connections_enum
*
iter
=
impl_from_IEnumNetworkConnections
(
iface
);
TRACE
(
"%p, %u
\n
"
,
iter
,
count
);
TRACE
(
"%p, %
l
u
\n
"
,
iter
,
count
);
if
(
!
count
)
return
S_OK
;
if
(
!
iter
->
cursor
)
return
S_FALSE
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment