|
Last change
on this file was 21411, checked in by dmik, 15 years ago |
|
Expose the iphlpapi.dll interface at source level through iprtrmib.h/iphlpapi.h.
|
|
File size:
582 bytes
|
| Line | |
|---|
| 1 | /* IPHLPAPI.H */
|
|---|
| 2 |
|
|---|
| 3 | #ifndef IP_HLP_API_H
|
|---|
| 4 | #define IP_HLP_API_H
|
|---|
| 5 |
|
|---|
| 6 | #ifdef __cplusplus
|
|---|
| 7 | extern "C" {
|
|---|
| 8 | #endif
|
|---|
| 9 |
|
|---|
| 10 | #include <iprtrmib.h>
|
|---|
| 11 |
|
|---|
| 12 | DWORD WINAPI GetIpAddrTable(PMIB_IPADDRTABLE pIpAddrTable, PULONG pdwSize,
|
|---|
| 13 | BOOL bOrder);
|
|---|
| 14 |
|
|---|
| 15 | DWORD WINAPI GetIfTable(PMIB_IFTABLE pIfTable, PULONG pdwSize, BOOL bOrder);
|
|---|
| 16 |
|
|---|
| 17 | DWORD WINAPI GetFriendlyIfIndex(DWORD IfIndex);
|
|---|
| 18 |
|
|---|
| 19 | DWORD WINAPI GetAdaptersInfo(PIP_ADAPTER_INFO pAdapterInfo, PULONG pOutBufLen);
|
|---|
| 20 |
|
|---|
| 21 | DWORD WINAPI GetNetworkParams(PFIXED_INFO pFixedInfo, PULONG pOutBufLen);
|
|---|
| 22 |
|
|---|
| 23 | #ifdef __cplusplus
|
|---|
| 24 | }
|
|---|
| 25 | #endif
|
|---|
| 26 |
|
|---|
| 27 | #endif /* IP_HLP_API_H */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.