NDIS_WORK_ITEM
This structure is used to specify the entry point of a caller-supplied function that processes a work item when it is de-queued.
Typedef struct _NDIS_WORK_ITEM {
PVOID Context;
NDIS_PROC Routine;
UCHAR WrapperReserved;
);
Members
- Context
Points to a caller-supplied context area that is passed, uninterpreted, to the callback as its only parameter. This area should be in resident memory and accessible in any arbitrary thread context in which the callback might be run subsequently. In particular, Context cannot point to the stack. - Routine
Specifies the entry point of a caller-supplied function that processes this work item when it is de-queued. - WrapperReserved
Reserved exclusively for use by NDIS.
Requirements
OS Versions: Windows CE .NET 4.0 and later.
Header: Ndis.h.
See Also
NdisInitializeWorkItem | NDIS_PROC
Last updated on Tuesday, May 18, 2004
© 1992-2003 Microsoft Corporation. All rights reserved.