mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 16:10:29 +00:00
- Implement NdisAllocateSharedMemory
svn path=/trunk/; revision=40140
This commit is contained in:
parent
1088b50413
commit
2e3301d050
1 changed files with 6 additions and 2 deletions
|
@ -104,7 +104,7 @@ NdisAllocateDmaChannel(
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
VOID
|
VOID
|
||||||
EXPORT
|
EXPORT
|
||||||
|
@ -115,7 +115,11 @@ NdisAllocateSharedMemory(
|
||||||
OUT PVOID *VirtualAddress,
|
OUT PVOID *VirtualAddress,
|
||||||
OUT PNDIS_PHYSICAL_ADDRESS PhysicalAddress)
|
OUT PNDIS_PHYSICAL_ADDRESS PhysicalAddress)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED
|
NdisMAllocateSharedMemory(NdisAdapterHandle,
|
||||||
|
Length,
|
||||||
|
Cached,
|
||||||
|
VirtualAddress,
|
||||||
|
PhysicalAddress);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue