NDIS_WORK_ITEM (Windows CE 5.0)
This structure is used to specify the entry point of a caller-supplied function that processes a work item when it is de-queued.
Typedefstruct _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
Send Feedback on this topic to the authors