65bb926f51
* include/subauth.h: Ditto. * include/ipexport.h: Fix global header define not to contain trailing underscore. Change layout according to standard. * include/iphlpapi.h: Ditto. * include/ipifcons.h: Ditto. * include/iptypes.h: Ditto. * include/ntdef.h: Ditto. Define conditional datatypes dependent of inclusion of ntdecapi.h and subauth.h. * lib/secur32.def: New stub for secur32.dll.
23 lines
487 B
C
23 lines
487 B
C
#ifndef _IPEXPORT_H
|
|
#define _IPEXPORT_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#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;
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* _IPEXPORT_H */
|