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
0c2430ce
Commit
0c2430ce
authored
May 13, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
May 13, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iphlpapi: Make getInterfacePhysicalByName() static.
parent
514c5f26
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
5 deletions
+3
-5
ifenum.c
dlls/iphlpapi/ifenum.c
+3
-3
ifenum.h
dlls/iphlpapi/ifenum.h
+0
-2
No files found.
dlls/iphlpapi/ifenum.c
View file @
0c2430ce
...
...
@@ -299,7 +299,7 @@ static DWORD getInterfaceMaskByName(const char *name)
}
#if defined (SIOCGIFHWADDR)
DWORD
getInterfacePhysicalByName
(
const
char
*
name
,
PDWORD
len
,
PBYTE
addr
,
static
DWORD
getInterfacePhysicalByName
(
const
char
*
name
,
PDWORD
len
,
PBYTE
addr
,
PDWORD
type
)
{
DWORD
ret
;
...
...
@@ -387,7 +387,7 @@ DWORD getInterfacePhysicalByName(const char *name, PDWORD len, PBYTE addr,
return
ret
;
}
#elif defined (SIOCGARP)
DWORD
getInterfacePhysicalByName
(
const
char
*
name
,
PDWORD
len
,
PBYTE
addr
,
static
DWORD
getInterfacePhysicalByName
(
const
char
*
name
,
PDWORD
len
,
PBYTE
addr
,
PDWORD
type
)
{
DWORD
ret
;
...
...
@@ -446,7 +446,7 @@ DWORD getInterfacePhysicalByName(const char *name, PDWORD len, PBYTE addr,
return
ret
;
}
#elif defined (HAVE_SYS_SYSCTL_H) && defined (HAVE_NET_IF_DL_H)
DWORD
getInterfacePhysicalByName
(
const
char
*
name
,
PDWORD
len
,
PBYTE
addr
,
static
DWORD
getInterfacePhysicalByName
(
const
char
*
name
,
PDWORD
len
,
PBYTE
addr
,
PDWORD
type
)
{
DWORD
ret
;
...
...
dlls/iphlpapi/ifenum.h
View file @
0c2430ce
...
...
@@ -86,8 +86,6 @@ DWORD getInterfaceIndexByName(const char *name, PDWORD index);
* if internal errors occur.
* Returns NO_ERROR on success.
*/
DWORD
getInterfacePhysicalByName
(
const
char
*
name
,
PDWORD
len
,
PBYTE
addr
,
PDWORD
type
);
DWORD
getInterfacePhysicalByIndex
(
DWORD
index
,
PDWORD
len
,
PBYTE
addr
,
PDWORD
type
);
...
...
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