GetSystemTime

From SCAR Divi Manual
Revision as of 00:45, 27 June 2011 by Freddy (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

function GetSystemTime: Integer;

Availability

SCAR Divi 3.00 > Current

Description

Returns the time the machine has been running in milliseconds.

Aliases

  • GetTickCount

Example

begin
  WriteLn(GetSystemTime);
end.