Difference between revisions of "GetSystemTime"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function GetSystemTime: Integer; </source> ==Availability== SCAR Divi 3.00 > Current ==Description== Returns the time the mach...") |
|||
Line 6: | Line 6: | ||
==Availability== | ==Availability== | ||
SCAR Divi 3.00 > Current | SCAR Divi 3.00 > Current | ||
+ | |||
+ | ===Aliases=== | ||
+ | *GetTickCount (SCAR Divi 3.00 > Current) | ||
==Description== | ==Description== | ||
Returns the time the machine has been running in milliseconds. | Returns the time the machine has been running in milliseconds. | ||
− | |||
− | |||
− | |||
==Example== | ==Example== |
Latest revision as of 00:47, 27 June 2011
Definition
function GetSystemTime: Integer;
Availability
SCAR Divi 3.00 > Current
Aliases
- GetTickCount (SCAR Divi 3.00 > Current)
Description
Returns the time the machine has been running in milliseconds.
Example
begin WriteLn(GetSystemTime); end.