Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ipxrtdef.h « include « w32api « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 500045692fc643f0d5297b55389981ca185816ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
 * ipxrtdef.h - Routing and Remote Access Services
 *
 * THIS SOFTWARE IS NOT COPYRIGHTED
 *
 * This source code is offered for use in the public domain.  You may use,
 * modify or distribute it freely.
 *
 * This code is distributed in the hope that it will be useful but
 * WITHOUT ANY WARRANTY.  ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
 * DISCLAIMED.  This includes but is not limited to warranties 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>
#include <ipxconst.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