IOCTL_NDISRD_SET_EVENT
This IOCTL registers
the Win32 event handle for specified network interface within
helper driver. Driver sets event into the signaled state when
adapter associated packet queue is not empty.
| Input
Buffer
|
Pointer
to _ADAPTER_EVENT.
|
| Input Buffer
Size
|
sizeof(_ADAPTER_EVENT)
|
| Output Buffer
|
None
|
| Output Buffer
Size
|
0
|
Remarks:
User application
should create Win32 event (with CreateEvent API call) and pass
adapter handle and event handle to this function as the fields of
_ADAPTER_EVENT structure. To release event pass NULL instead event
handle into this IOCTL. For Windows 9x/ME you should translate
Ring3 event handle to Ring0 one. See details in the ndisapi.dll and
in _ADAPTER_EVENT structure
description. Helper driver will signal this event when adapter
associated packet queue is non-empty.
|