mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 02:25:40 +00:00
- Implement NdisGetSharedDataAlignment and NdisGetVersion
svn path=/trunk/; revision=41224
This commit is contained in:
parent
9ee18c1c89
commit
e258863e18
1 changed files with 5 additions and 7 deletions
|
@ -132,27 +132,25 @@ NdisAllocateFromBlockPool(
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
ULONG
|
ULONG
|
||||||
EXPORT
|
EXPORT
|
||||||
NdisGetSharedDataAlignment(VOID)
|
NdisGetSharedDataAlignment(VOID)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED
|
return KeGetRecommendedSharedDataAlignment();
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
UINT
|
UINT
|
||||||
EXPORT
|
EXPORT
|
||||||
NdisGetVersion(VOID)
|
NdisGetVersion(VOID)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED
|
NDIS_DbgPrint(MAX_TRACE, ("NdisGetVersion() has returned 5.0\n"));
|
||||||
|
|
||||||
return 0;
|
return (UINT) 0x5;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue