mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +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
|
||||
EXPORT
|
||||
NdisGetSharedDataAlignment(VOID)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
|
||||
return 0;
|
||||
return KeGetRecommendedSharedDataAlignment();
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
UINT
|
||||
EXPORT
|
||||
NdisGetVersion(VOID)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
NDIS_DbgPrint(MAX_TRACE, ("NdisGetVersion() has returned 5.0\n"));
|
||||
|
||||
return 0;
|
||||
return (UINT) 0x5;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue