2012-03-19 Ben Greear <greear@users.sf.net>
* include/routprot.h (IP_LOCAL_BINDING): Move above IP_ADAPTER_BINDING_INFO to correct warning about IP_LOCAL_BINDING being undefined.
This commit is contained in:
parent
a1b22837ae
commit
b0a905c5a0
@ -1,3 +1,8 @@
|
|||||||
|
2012-03-19 Ben Greear <greear@users.sf.net>
|
||||||
|
|
||||||
|
* include/routprot.h (IP_LOCAL_BINDING): Move above IP_ADAPTER_BINDING_INFO
|
||||||
|
to correct warning about IP_LOCAL_BINDING being undefined.
|
||||||
|
|
||||||
2012-01-16 Keith Marshall <keithmarshall@users.sf.net>
|
2012-01-16 Keith Marshall <keithmarshall@users.sf.net>
|
||||||
|
|
||||||
Correct misused 'rm -r' command in uninstall rules.
|
Correct misused 'rm -r' command in uninstall rules.
|
||||||
|
@ -43,6 +43,10 @@ extern "C" {
|
|||||||
#define IPX_PROTOCOL_NLSP 0x00020002
|
#define IPX_PROTOCOL_NLSP 0x00020002
|
||||||
/*--- Router Management Reference - Router Management Structures */
|
/*--- Router Management Reference - Router Management Structures */
|
||||||
#if (_WIN32_WINNT >= 0x0500)
|
#if (_WIN32_WINNT >= 0x0500)
|
||||||
|
typedef struct IP_LOCAL_BINDING {
|
||||||
|
DWORD Address;
|
||||||
|
DWORD Mask;
|
||||||
|
} IP_LOCAL_BINDING,*PIP_LOCAL_BINDING;
|
||||||
typedef struct IP_ADAPTER_BINDING_INFO {
|
typedef struct IP_ADAPTER_BINDING_INFO {
|
||||||
ULONG AddressCount;
|
ULONG AddressCount;
|
||||||
DWORD RemoteAddress;
|
DWORD RemoteAddress;
|
||||||
@ -50,10 +54,6 @@ typedef struct IP_ADAPTER_BINDING_INFO {
|
|||||||
ULONGLONG Speed;
|
ULONGLONG Speed;
|
||||||
IP_LOCAL_BINDING Address[];
|
IP_LOCAL_BINDING Address[];
|
||||||
} IP_ADAPTER_BINDING_INFO,*PIP_ADAPTER_BINDING_INFO;
|
} IP_ADAPTER_BINDING_INFO,*PIP_ADAPTER_BINDING_INFO;
|
||||||
typedef struct IP_LOCAL_BINDING {
|
|
||||||
DWORD Address;
|
|
||||||
DWORD Mask;
|
|
||||||
} IP_LOCAL_BINDING,*PIP_LOCAL_BINDING;
|
|
||||||
typedef struct IPX_ADAPTER_BINDING_INFO {
|
typedef struct IPX_ADAPTER_BINDING_INFO {
|
||||||
ULONG AdapterIndex;
|
ULONG AdapterIndex;
|
||||||
UCHAR Network[4];
|
UCHAR Network[4];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user