timeGetTime (Windows CE 5.0)

Send Feedback

This function retrieves the system time, in milliseconds. The system time is the time elapsed since the system started.

DWORD timeGetTime(void);

Parameters

None.

Return Values

Returns the system time, in milliseconds.

Remarks

The only difference between this function and the timeGetSystemTime function is that timeGetSystemTime uses the MMTIME structure to return the system time. The timeGetTime function has less overhead than timeGetSystemTime.

The value returned by the timeGetTime function is a DWORD value.

The return value resets to zero every 2^32 milliseconds, which is about 49.71 days. This can cause problems in code that directly uses the timeGetTime return value in computations, particularly when the value is used to control code execution. Depending on how you are using the hardware timer, you may need to handle the timer reset condition.

Always use the difference between two timeGetTime return values in computations.

Requirements

OS Versions: Windows CE .NET 4.2 and later.
Header: Mmsystem.h.
Link Library: Mmtimer.lib.

See Also

MMTIME | timeGetSystemTime | Time Reference

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.