mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[NDISUIO]
Add required PnPEventHandler CORE-8292 svn path=/trunk/; revision=63916
This commit is contained in:
parent
ce2f155e05
commit
b36bcbb154
3 changed files with 25 additions and 0 deletions
|
@ -74,6 +74,7 @@ DriverEntry(PDRIVER_OBJECT DriverObject,
|
|||
Chars.MinorNdisVersion = NDIS_MINOR_VERSION;
|
||||
Chars.OpenAdapterCompleteHandler = NduOpenAdapterComplete;
|
||||
Chars.CloseAdapterCompleteHandler = NduCloseAdapterComplete;
|
||||
Chars.PnPEventHandler = NduNetPnPEvent;
|
||||
Chars.SendCompleteHandler = NduSendComplete;
|
||||
Chars.TransferDataCompleteHandler = NduTransferDataComplete;
|
||||
Chars.ResetCompleteHandler = NduResetComplete;
|
||||
|
|
|
@ -134,6 +134,11 @@ NTAPI
|
|||
NduCloseAdapterComplete(NDIS_HANDLE ProtocolBindingContext,
|
||||
NDIS_STATUS Status);
|
||||
|
||||
NDIS_STATUS
|
||||
NTAPI
|
||||
NduNetPnPEvent(NDIS_HANDLE ProtocolBindingContext,
|
||||
PNET_PNP_EVENT NetPnPEvent);
|
||||
|
||||
VOID
|
||||
NTAPI
|
||||
NduSendComplete(NDIS_HANDLE ProtocolBindingContext,
|
||||
|
|
|
@ -40,6 +40,25 @@ NduCloseAdapterComplete(NDIS_HANDLE ProtocolBindingContext,
|
|||
KeSetEvent(&AdapterContext->AsyncEvent, IO_NO_INCREMENT, FALSE);
|
||||
}
|
||||
|
||||
NDIS_STATUS
|
||||
NTAPI
|
||||
NduNetPnPEvent(NDIS_HANDLE ProtocolBindingContext,
|
||||
PNET_PNP_EVENT NetPnPEvent)
|
||||
{
|
||||
DPRINT("NetPnPEvent\n");
|
||||
|
||||
switch (NetPnPEvent->NetEvent)
|
||||
{
|
||||
case NetEventQueryRemoveDevice:
|
||||
/* Nothing to do */
|
||||
return NDIS_STATUS_SUCCESS;
|
||||
|
||||
default:
|
||||
DPRINT1("NetPnPEvent unimplemented for net event 0x%x\n", NetPnPEvent->NetEvent);
|
||||
return NDIS_STATUS_FAILURE;
|
||||
}
|
||||
}
|
||||
|
||||
VOID
|
||||
NTAPI
|
||||
NduSendComplete(NDIS_HANDLE ProtocolBindingContext,
|
||||
|
|
Loading…
Reference in a new issue