implement NdisGetCurrentProcessorCounts

svn path=/trunk/; revision=32741
This commit is contained in:
Magnus Olsen 2008-03-22 00:38:09 +00:00
parent c9adea9855
commit 13ace0b7a8
2 changed files with 10 additions and 2 deletions

View file

@ -507,6 +507,14 @@ typedef struct _NDIS40_MINIPORT_CHARACTERISTICS {
KeReleaseSpinLock(_Lock, OldIrql); \
}
/* missing protypes */
VOID
NTAPI
ExGetCurrentProcessorCounts(
PULONG ThreadKernelTime,
PULONG TotalCpuTime,
PULONG ProcessorNumber);
#endif /* __NDISSYS_H */
/* EOF */

View file

@ -462,7 +462,7 @@ NdisConvertStringToAtmAddress(
/*
* @unimplemented
* @implemented
*/
VOID
EXPORT
@ -477,7 +477,7 @@ NdisGetCurrentProcessorCounts(
* NDIS 5.0
*/
{
UNIMPLEMENTED
ExGetCurrentProcessorCounts( (PULONG) pIdleCount, (PULONG) pKernelAndUser, (PULONG) pIndex);
}