mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 02:26:03 +00:00
- Add NDIS_PACKET_STACK and NDIS_BLOCK_INITIALIZER
svn path=/trunk/; revision=41221
This commit is contained in:
parent
b917a5c401
commit
b8460aa949
1 changed files with 9 additions and 1 deletions
|
@ -451,6 +451,10 @@ typedef struct _NDIS_PM_PACKET_PATTERN {
|
||||||
ULONG PatternFlags;
|
ULONG PatternFlags;
|
||||||
} NDIS_PM_PACKET_PATTERN, *PNDIS_PM_PACKET_PATTERN;
|
} 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 */
|
/* Request types used by NdisRequest */
|
||||||
typedef enum _NDIS_REQUEST_TYPE {
|
typedef enum _NDIS_REQUEST_TYPE {
|
||||||
|
@ -2432,7 +2436,11 @@ NdisUpdateSharedMemory(
|
||||||
#define NdisZeroMemory(Destination, Length) \
|
#define NdisZeroMemory(Destination, Length) \
|
||||||
RtlZeroMemory(Destination, Length)
|
RtlZeroMemory(Destination, Length)
|
||||||
|
|
||||||
|
typedef VOID DDKAPI
|
||||||
|
(*NDIS_BLOCK_INITIALIZER) (
|
||||||
|
IN PUCHAR Block,
|
||||||
|
IN SIZE_T NumberOfBytes
|
||||||
|
);
|
||||||
|
|
||||||
/* Configuration routines */
|
/* Configuration routines */
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue