Difference between revisions of "GetSystemTime"

From SCAR Divi Manual
Jump to: navigation, search
(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...")
(No difference)

Revision as of 00:45, 27 June 2011

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.