CNdisApi::SetAdapterListChangeEvent
BOOL
SetAdapterListChangeEvent ( HANDLE hEvent
);
Return Value:
TRUE if call was
successful, FALSE otherwise
Parameters:
hEvent
Handle to user
created Win32 event. Set it to NULL if you want to release
event.
Remarks:
This member is a
simple wrapper for IOCTL_NDISRD_SET_ADAPTER_EVENT.
User application should create Win32 event (with CreateEvent API
call) and pass the event handle to this function. Helper driver
will signal this event when TCP/IP bound adapter's list changes (an
example this happens on plug/unplug network card, disable/enable
network connection or etc.). Usually you should call
GetTcpipBoundAdaptersInfo and renew your adapter associated
structures on this event.
|