dfe2700797
(IPX_INTERFACE_INFO_TYPE,IPX_STATIC_ROUTE_INFO_TYPE) (IPX_STATIC_SERVICE_INFO_TYPE,IPX_SERVICE_FILTER_INFO_TYPE) (IPX_ROUTE_FILTER_INFO_TYPE,IPX_IN_TRAFFIC_FILTER_INFO_TYPE) (IPX_ADAPTER_INFO_TYPE,IPXWAN_INTERFACE_INFO_TYPE,IPX_GLOBAL_INFO_TYPE) (IPX_STATIC_NETBIOS_NAME_INFO_TYPE) (IPX_IN_TRAFFIC_FILTER_GLOBAL_INFO_TYPE) (IPX_OUT_TRAFFIC_FILTER_INFO_TYPE) (IPX_OUT_TRAFFIC_FILTER_GLOBAL_INFO_TYPE): Define. * include/routprot.h: Cleanup. (PROTO_IP_*,IPRTRMGR_PID,IPX_PROTOCOL_*): Define. * include/fltdefs.h: New file. * include/ipinfoid.h: New file.
53 lines
1.5 KiB
C
53 lines
1.5 KiB
C
/*
|
|
ipxrtdef.h - Routing and Remote Access Services
|
|
|
|
This file is part of a free library for the Win32 API.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
*/
|
|
#ifndef _IPXRTDEF_H
|
|
#define _IPXRTDEF_H
|
|
#if __GNUC__ >= 3
|
|
#pragma GCC system_header
|
|
#endif
|
|
|
|
#include <stm.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*--- Router Management Reference - Router Information Enumeration Types */
|
|
#define IPX_INTERFACE_INFO_TYPE 0x0001
|
|
#define IPX_STATIC_ROUTE_INFO_TYPE 0x0002
|
|
#define IPX_STATIC_SERVICE_INFO_TYPE 0x0003
|
|
#define IPX_SERVICE_FILTER_INFO_TYPE 0x0004
|
|
#define IPX_ROUTE_FILTER_INFO_TYPE 0x0005
|
|
#define IPX_IN_TRAFFIC_FILTER_INFO_TYPE 0x0006
|
|
#define IPX_ADAPTER_INFO_TYPE 0x0007
|
|
#define IPXWAN_INTERFACE_INFO_TYPE 0x0008
|
|
#define IPX_GLOBAL_INFO_TYPE 0x0009
|
|
#define IPX_STATIC_NETBIOS_NAME_INFO_TYPE 0x000A
|
|
#define IPX_IN_TRAFFIC_FILTER_GLOBAL_INFO_TYPE 0x000B
|
|
#define IPX_OUT_TRAFFIC_FILTER_INFO_TYPE 0x000C
|
|
#define IPX_OUT_TRAFFIC_FILTER_GLOBAL_INFO_TYPE 0x000D
|
|
/*--- Router Management Reference - Router Information Structures - IPX Information Structures */
|
|
#if (_WIN32_WINNT >= 0x0500)
|
|
typedef struct _IPX_IF_INFO {
|
|
ULONG AdminState;
|
|
ULONG NetbiosAccept;
|
|
ULONG NetbiosDeliver;
|
|
} IPX_IF_INFO,*PIPX_IF_INFO;
|
|
typedef IPX_SERVER_ENTRY IPX_STATIC_SERVICE_INFO,*PIPX_STATIC_SERVICE_INFO;
|
|
typedef struct _IPXWAN_IF_INFO {
|
|
ULONG AdminState;
|
|
} IPXWAN_IF_INFO,*PIPXWAN_IF_INFO;
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|