implemented NdisGetSystemUptime, thx kjk for the help getting it faster against my frist code, that was never commited.

svn path=/trunk/; revision=32739
This commit is contained in:
Magnus Olsen 2008-03-22 00:17:18 +00:00
parent bb09e76dfa
commit b1f27a9bd0

View file

@ -522,7 +522,7 @@ NdisGetReceivedPacket(
/*
* @unimplemented
* @implemented
*/
VOID
EXPORT
@ -534,8 +534,9 @@ NdisGetSystemUptime(
* NOTES:
* NDIS 5.0
*/
{
UNIMPLEMENTED
{
/* Get the uptime of the system in msec */
*pSystemUpTime = ( (SharedUserData->TickCountLowDeprecated * SharedUserData->TickCountMultiplier) / 0x1000000);
}