Author: cgutman Date: Sun May 31 18:42:17 2009 New Revision: 41221
URL: http://svn.reactos.org/svn/reactos?rev=41221&view=rev Log: - Add NDIS_PACKET_STACK and NDIS_BLOCK_INITIALIZER
Modified: trunk/reactos/include/ddk/ndis.h
Modified: trunk/reactos/include/ddk/ndis.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/ddk/ndis.h?rev=4122... ============================================================================== --- trunk/reactos/include/ddk/ndis.h [iso-8859-1] (original) +++ trunk/reactos/include/ddk/ndis.h [iso-8859-1] Sun May 31 18:42:17 2009 @@ -451,6 +451,10 @@ ULONG PatternFlags; } NDIS_PM_PACKET_PATTERN, *PNDIS_PM_PACKET_PATTERN;
+typedef struct _NDIS_PACKET_STACK { + ULONG_PTR IMReserved[2]; + ULONG_PTR NdisReserved[4]; +} NDIS_PACKET_STACK, *PNDIS_PACKET_STACK;
/* Request types used by NdisRequest */ typedef enum _NDIS_REQUEST_TYPE { @@ -2432,7 +2436,11 @@ #define NdisZeroMemory(Destination, Length) \ RtlZeroMemory(Destination, Length)
- +typedef VOID DDKAPI +(*NDIS_BLOCK_INITIALIZER) ( + IN PUCHAR Block, + IN SIZE_T NumberOfBytes + );
/* Configuration routines */