pQueryPerformanceCounter (Windows CE 5.0)

Send Feedback

This function is optional and should be set for platforms that provide timer functions with higher granularity than GetTickCount.

The OAL initializes pQueryPerformanceCounter to point to OEMQueryPerformanceCounter, if defined.

extern BOOL (*pQueryPerformanceCounter)(LARGE_INTEGER* lpPerformanceCount);

Parameters

  • lpPerformanceCount
    [in] Pointer to the performance count.

Return Values

This function should always return TRUE.

Remarks

Windows CE provides a default implementation of QueryPerformanceCounter, which is based on GetTickCount, but will call pQueryPerformanceCounter if defined.

Requirements

OS Versions: Windows CE 2.10 and later.
Header: Developer-defined.
Link Library: Coredll.lib..

See Also

pQueryPerformanceFrequency | GetTickCount | QueryPerformanceCounter

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.