mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-02 10:50:59 +02:00
* return defined values for GetDate and GetTime for the embedded targets
git-svn-id: trunk@34921 -
This commit is contained in:
parent
0520d246d0
commit
9a4c7e2244
@ -124,6 +124,10 @@ end;
|
||||
|
||||
procedure GetDate(Var Year, Month, MDay, WDay: Word);
|
||||
begin
|
||||
Year := 0;
|
||||
Month := 0;
|
||||
MDay := 0;
|
||||
WDay := 0;
|
||||
end;
|
||||
|
||||
procedure SetDate(Year, Month, Day: Word);
|
||||
@ -132,6 +136,10 @@ end;
|
||||
|
||||
procedure GetTime(Var Hour, Minute, Second, Sec100: Word);
|
||||
begin
|
||||
Hour := 0;
|
||||
Minute := 0;
|
||||
Second := 0;
|
||||
Sec100 := 0;
|
||||
end;
|
||||
|
||||
Procedure SetTime(Hour, Minute, Second, Sec100: Word);
|
||||
|
Loading…
Reference in New Issue
Block a user