Navigation: thinBasic Modules > Core > Timing > HiResTimer_Get |
|
Description
Retrieves the current value of the high-resolution performance counter.
Syntax
n = HiResTimer_Get
Returns
Number
Returned value are the microseconds elapsed.
Parameters
Name |
Type |
Optional |
Meaning |
Remarks
Restrictions
See also
Examples
'...
Dim T1, T2 As QUAD
'---Initialize hi resolution timer
HiResTimer_Init
T1 = HiResTimer_Get
'---Do whatever needed to be measured
T2 = HiResTimer_Get
MSGBOX 0, "Elapsed time in microseconds: " & FORMAT$(T2-T1, "#0")
© 2004-2008 thinBasic. All rights reserved. | Version 1.7.0.0 | Web Site: http://www.thinbasic.com |