* make Dos.GetMsCount a dummy for embedded targets

git-svn-id: trunk@33065 -
This commit is contained in:
florian 2016-02-07 11:16:39 +00:00
parent 328b6464ed
commit 0695c92b73

View File

@ -42,6 +42,8 @@ type
implementation implementation
{$define HAS_GETMSCOUNT}
{$I dos.inc} {$I dos.inc}
{****************************************************************************** {******************************************************************************
@ -132,12 +134,14 @@ procedure GetTime(Var Hour, Minute, Second, Sec100: Word);
begin begin
end; end;
Procedure SetTime(Hour, Minute, Second, Sec100: Word); Procedure SetTime(Hour, Minute, Second, Sec100: Word);
begin begin
end; end;
function GetMsCount: int64;
begin
result:=0;
end;
{****************************************************************************** {******************************************************************************
--- Exec --- --- Exec ---