* lib/iphlpapi.def: New stub for iphlpapi.dll.
* include/iptypes.h: New header file. * include/ipexport.h: Ditto. * include/iphlpapi.h: Ditto. * include/iprtrmib.h: Ditto.
This commit is contained in:
22
winsup/w32api/include/ipexport.h
Normal file
22
winsup/w32api/include/ipexport.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef _IPEXPORT_H_
|
||||
#define _IPEXPORT_H_
|
||||
|
||||
#ifndef ANY_SIZE
|
||||
#define ANY_SIZE 1
|
||||
#endif
|
||||
|
||||
#define MAX_ADAPTER_NAME 128
|
||||
|
||||
typedef unsigned long IPAddr, IPMask, IP_STATUS;
|
||||
|
||||
typedef struct {
|
||||
ULONG Index;
|
||||
WCHAR Name[MAX_ADAPTER_NAME];
|
||||
} IP_ADAPTER_INDEX_MAP, *PIP_ADAPTER_INDEX_MAP;
|
||||
|
||||
typedef struct {
|
||||
LONG NumAdapters;
|
||||
IP_ADAPTER_INDEX_MAP Adapter[ANY_SIZE];
|
||||
} IP_INTERFACE_INFO, *PIP_INTERFACE_INFO;
|
||||
|
||||
#endif /* _IPEXPORT_H_ */
|
Reference in New Issue
Block a user