mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Added EthFilterDprIndicateReceive(), EthFilterDprIndicateReceiveComplete() functions, since Realtek 8139 network card driver imports them. Their contents is "UNIMPLEMENTED". This makes ReactOS at least gracefully discarding this driver (and not crashing with BugCheck).
svn path=/trunk/; revision=4655
This commit is contained in:
parent
1ee3211646
commit
74c0e6eb1c
1 changed files with 25 additions and 0 deletions
|
@ -125,6 +125,31 @@ EthFilterIndicateReceiveComplete(
|
|||
UNIMPLEMENTED
|
||||
}
|
||||
|
||||
VOID
|
||||
EXPORT
|
||||
EthFilterDprIndicateReceive(
|
||||
IN PETH_FILTER Filter,
|
||||
IN NDIS_HANDLE MacReceiveContext,
|
||||
IN PCHAR Address,
|
||||
IN PVOID HeaderBuffer,
|
||||
IN UINT HeaderBufferSize,
|
||||
IN PVOID LookaheadBuffer,
|
||||
IN UINT LookaheadBufferSize,
|
||||
IN UINT PacketSize)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
}
|
||||
|
||||
|
||||
VOID
|
||||
EXPORT
|
||||
EthFilterDprIndicateReceiveComplete(
|
||||
IN PETH_FILTER Filter)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
}
|
||||
|
||||
|
||||
|
||||
BOOLEAN
|
||||
EXPORT
|
||||
|
|
Loading…
Reference in a new issue