mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
- Implement NdisCompleteUnbindAdapter
svn path=/trunk/; revision=40113
This commit is contained in:
parent
cf85baa5fa
commit
fb05aeee09
2 changed files with 20 additions and 13 deletions
|
@ -51,6 +51,26 @@ NdisCompleteBindAdapter(
|
|||
ExInterlockedInsertTailList(&ProtocolListHead, &Protocol->ListEntry, &ProtocolListLock);
|
||||
}
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
VOID
|
||||
EXPORT
|
||||
NdisCompleteUnbindAdapter(
|
||||
IN NDIS_HANDLE UnbindAdapterContext,
|
||||
IN NDIS_STATUS Status)
|
||||
{
|
||||
/* We probably need to do more here but for now we just do
|
||||
* the opposite of what NdisCompleteBindAdapter does
|
||||
*/
|
||||
|
||||
PROTOCOL_BINDING *Protocol = (PROTOCOL_BINDING *)UnbindAdapterContext;
|
||||
|
||||
if (!NT_SUCCESS(Status)) return;
|
||||
|
||||
ExInterlockedRemoveEntryList(&Protocol->ListEntry, &ProtocolListLock);
|
||||
}
|
||||
|
||||
|
||||
NDIS_STATUS
|
||||
ProIndicatePacket(
|
||||
|
|
|
@ -24,19 +24,6 @@ NdisCompleteQueryStatistics(
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
VOID
|
||||
EXPORT
|
||||
NdisCompleteUnbindAdapter(
|
||||
IN NDIS_HANDLE UnbindAdapterContext,
|
||||
IN NDIS_STATUS Status)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue