NdisGetSystemUpTimeEx function (ndis.h)

The NdisGetSystemUpTimeEx function returns the number of milliseconds that have elapsed since the computer was restarted.

Syntax

void NdisGetSystemUpTimeEx(
  [out] PLARGE_INTEGER pSystemUpTime
);

Parameters

[out] pSystemUpTime

A pointer to a caller-supplied LARGE_INTEGER variable in which this function returns the time, in milliseconds, since the computer was last restarted.

Return value

None

Remarks

NDIS drivers should call the NdisGetSystemUpTimeEx function instead of the NdisGetSystemUpTime function.

Requirements

Requirement Value
Minimum supported client Supported in NDIS 6.0 and later.
Target Platform Universal
Header ndis.h (include Ndis.h)
Library Ndis.lib
IRQL Any level

See also

NdisGetSystemUpTime