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
44933230
Commit
44933230
authored
Jan 12, 2015
by
Austin English
Committed by
Alexandre Julliard
Jan 14, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iphlpapi: Add FreeMibTable implementation.
parent
0486b436
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
iphlpapi.spec
dlls/iphlpapi/iphlpapi.spec
+1
-1
iphlpapi_main.c
dlls/iphlpapi/iphlpapi_main.c
+14
-0
No files found.
dlls/iphlpapi/iphlpapi.spec
View file @
44933230
...
@@ -66,7 +66,7 @@
...
@@ -66,7 +66,7 @@
#@ stub FlushIpNetTable2
#@ stub FlushIpNetTable2
@ stub FlushIpNetTableFromStack
@ stub FlushIpNetTableFromStack
#@ stub FlushIpPathTable
#@ stub FlushIpPathTable
#@ stub FreeMibTable
@ stdcall FreeMibTable( ptr )
@ stdcall GetAdapterIndex( wstr ptr )
@ stdcall GetAdapterIndex( wstr ptr )
@ stub GetAdapterOrderMap
@ stub GetAdapterOrderMap
@ stdcall GetAdaptersAddresses( long long ptr ptr ptr )
@ stdcall GetAdaptersAddresses( long long ptr ptr ptr )
...
...
dlls/iphlpapi/iphlpapi_main.c
View file @
44933230
...
@@ -442,6 +442,20 @@ DWORD WINAPI FlushIpNetTable(DWORD dwIfIndex)
...
@@ -442,6 +442,20 @@ DWORD WINAPI FlushIpNetTable(DWORD dwIfIndex)
return
ERROR_NOT_SUPPORTED
;
return
ERROR_NOT_SUPPORTED
;
}
}
/******************************************************************
* FreeMibTable (IPHLPAPI.@)
*
* Free buffer allocated by network functions
*
* PARAMS
* ptr [In] pointer to the buffer to free
*
*/
void
WINAPI
FreeMibTable
(
void
*
ptr
)
{
TRACE
(
"(%p)
\n
"
,
ptr
);
HeapFree
(
GetProcessHeap
(),
0
,
ptr
);
}
/******************************************************************
/******************************************************************
* GetAdapterIndex (IPHLPAPI.@)
* GetAdapterIndex (IPHLPAPI.@)
...
...
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