[REACTOS]

Addendum to revision r58744.

CORE-7062 #comment the NDIS_** structures, albeit containing the "recieve" misspelling, must be kept as they are because we must be compatible with the Windows DDK. Indeed this one contains the misspelling. Blame Microsoft if they do not know how to write proper English or if they do not re-read what they are writing !!

svn path=/trunk/; revision=58748
This commit is contained in:
Hermès Bélusca-Maïto 2013-04-13 22:11:40 +00:00
parent 5286e4fac2
commit c6990096ac

View file

@ -212,6 +212,12 @@ typedef struct _NDIS_WAN_SET_COMP_INFO {
IN NDIS_WAN_COMPRESS_INFO RecvCapabilities;
} NDIS_WAN_SET_COMP_INFO, *PNDIS_WAN_SET_COMP_INFO;
/*
* NOTE: As some people may notice, this structure contains three misspelled
* fields (the "Tunnel*Recieve*" fields). Their names come from the Windows
* Driver Development Kit and thus, blame Microsoft if they do not know how
* to write proper English or if they do not re-read what they are writing !!
*/
typedef struct _NDIS_WAN_GET_STATS_INFO {
IN NDIS_HANDLE NdisLinkHandle;
OUT ULONG BytesSent;
@ -228,10 +234,10 @@ typedef struct _NDIS_WAN_GET_STATS_INFO {
OUT ULONG BytesReceivedUncompressed;
OUT ULONG BytesTransmittedCompressed;
OUT ULONG BytesReceivedCompressed;
OUT ULONG TunnelPacketsReceived;
OUT ULONG TunnelReceivePacketsPending;
OUT ULONG TunnelPacketsRecieved;
OUT ULONG TunnelRecievePacketsPending;
OUT ULONG TunnelPacketsIndicatedUp;
OUT ULONG TunnelReceivePacketsRejected;
OUT ULONG TunnelRecievePacketsRejected;
OUT ULONG TunnelPacketsSent;
OUT ULONG TunnelPacketsSentComplete;
OUT ULONG TunnelTransmitPacketsPending;
@ -302,6 +308,12 @@ typedef struct _NDIS_WAN_CO_SET_COMP_INFO {
IN NDIS_WAN_COMPRESS_INFO RecvCapabilities;
} NDIS_WAN_CO_SET_COMP_INFO, *PNDIS_WAN_CO_SET_COMP_INFO;
/*
* NOTE: As some people may notice, this structure contains three misspelled
* fields (the "Tunnel*Recieve*" fields). Their names come from the Windows
* Driver Development Kit and thus, blame Microsoft if they do not know how
* to write proper English or if they do not re-read what they are writing !!
*/
typedef struct _NDIS_WAN_CO_GET_STATS_INFO {
OUT ULONG BytesSent;
OUT ULONG BytesRcvd;
@ -317,10 +329,10 @@ typedef struct _NDIS_WAN_CO_GET_STATS_INFO {
OUT ULONG BytesReceivedUncompressed;
OUT ULONG BytesTransmittedCompressed;
OUT ULONG BytesReceivedCompressed;
OUT ULONG TunnelPacketsReceived;
OUT ULONG TunnelReceivePacketsPending;
OUT ULONG TunnelPacketsRecieved;
OUT ULONG TunnelRecievePacketsPending;
OUT ULONG TunnelPacketsIndicatedUp;
OUT ULONG TunnelReceivePacketsRejected;
OUT ULONG TunnelRecievePacketsRejected;
OUT ULONG TunnelPacketsSent;
OUT ULONG TunnelPacketsSentComplete;
OUT ULONG TunnelTransmitPacketsPending;