Difference between revisions of "Getticks"

From OpenEUO
Jump to: navigation, search
(Created page with " getticks () Returns the number of milliseconds elapsed since system start. [http://msdn.microsoft.com/en-us/library/ms724408%28VS.85%29.aspx Windows API - GetTickCount function]")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
  getticks ()
 
  getticks ()
Returns the number of milliseconds elapsed since system start.
+
Returns the number of milliseconds elapsed since system start. The resolution of the GetTickCount function is limited to the resolution of the system timer, which is typically in the range of 10 milliseconds to 16 milliseconds.
 +
 
 +
[[Gettime]]
 +
 
 +
[[Wait]]
  
 
[http://msdn.microsoft.com/en-us/library/ms724408%28VS.85%29.aspx Windows API - GetTickCount function]
 
[http://msdn.microsoft.com/en-us/library/ms724408%28VS.85%29.aspx Windows API - GetTickCount function]

Latest revision as of 10:07, 9 October 2010

getticks ()

Returns the number of milliseconds elapsed since system start. The resolution of the GetTickCount function is limited to the resolution of the system timer, which is typically in the range of 10 milliseconds to 16 milliseconds.

Gettime

Wait

Windows API - GetTickCount function