Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
3f1a63ec
Commit
3f1a63ec
authored
Nov 03, 2008
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Nov 04, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iphlpapi: Do not cast zero.
parent
7589715c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
iphlpapi_main.c
dlls/iphlpapi/iphlpapi_main.c
+9
-9
No files found.
dlls/iphlpapi/iphlpapi_main.c
View file @
3f1a63ec
...
...
@@ -422,7 +422,7 @@ DWORD WINAPI CreateIpForwardEntry(PMIB_IPFORWARDROW pRoute)
{
FIXME
(
"(pRoute %p): stub
\n
"
,
pRoute
);
/* could use SIOCADDRT, not sure I want to */
return
(
DWORD
)
0
;
return
0
;
}
...
...
@@ -445,7 +445,7 @@ DWORD WINAPI CreateIpNetEntry(PMIB_IPNETROW pArpEntry)
{
FIXME
(
"(pArpEntry %p)
\n
"
,
pArpEntry
);
/* could use SIOCSARP on systems that support it, not sure I want to */
return
(
DWORD
)
0
;
return
0
;
}
...
...
@@ -515,7 +515,7 @@ DWORD WINAPI DeleteIpForwardEntry(PMIB_IPFORWARDROW pRoute)
{
FIXME
(
"(pRoute %p): stub
\n
"
,
pRoute
);
/* could use SIOCDELRT, not sure I want to */
return
(
DWORD
)
0
;
return
0
;
}
...
...
@@ -538,7 +538,7 @@ DWORD WINAPI DeleteIpNetEntry(PMIB_IPNETROW pArpEntry)
{
FIXME
(
"(pArpEntry %p): stub
\n
"
,
pArpEntry
);
/* could use SIOCDARP on systems that support it, not sure I want to */
return
(
DWORD
)
0
;
return
0
;
}
...
...
@@ -1933,7 +1933,7 @@ DWORD WINAPI SetIpForwardEntry(PMIB_IPFORWARDROW pRoute)
/* this is to add a route entry, how's it distinguishable from
CreateIpForwardEntry?
could use SIOCADDRT, not sure I want to */
return
(
DWORD
)
0
;
return
0
;
}
...
...
@@ -1956,7 +1956,7 @@ DWORD WINAPI SetIpNetEntry(PMIB_IPNETROW pArpEntry)
{
FIXME
(
"(pArpEntry %p): stub
\n
"
,
pArpEntry
);
/* same as CreateIpNetEntry here, could use SIOCSARP, not sure I want to */
return
(
DWORD
)
0
;
return
0
;
}
...
...
@@ -1978,7 +1978,7 @@ DWORD WINAPI SetIpNetEntry(PMIB_IPNETROW pArpEntry)
DWORD
WINAPI
SetIpStatistics
(
PMIB_IPSTATS
pIpStats
)
{
FIXME
(
"(pIpStats %p): stub
\n
"
,
pIpStats
);
return
(
DWORD
)
0
;
return
0
;
}
...
...
@@ -2002,7 +2002,7 @@ DWORD WINAPI SetIpTTL(UINT nTTL)
FIXME
(
"(nTTL %d): stub
\n
"
,
nTTL
);
/* could echo nTTL > /proc/net/sys/net/ipv4/ip_default_ttl, not sure I
want to. Could map EACCESS to ERROR_ACCESS_DENIED, I suppose */
return
(
DWORD
)
0
;
return
0
;
}
...
...
@@ -2024,7 +2024,7 @@ DWORD WINAPI SetIpTTL(UINT nTTL)
DWORD
WINAPI
SetTcpEntry
(
PMIB_TCPROW
pTcpRow
)
{
FIXME
(
"(pTcpRow %p): stub
\n
"
,
pTcpRow
);
return
(
DWORD
)
0
;
return
0
;
}
...
...
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