mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-10 00:07:23 +01:00
* SecsPerHour, delphi compatibility.
git-svn-id: trunk@42452 -
This commit is contained in:
parent
5d4ae23df8
commit
6ca93e294f
@ -26,7 +26,9 @@ const
|
||||
MinsPerHour = 60;
|
||||
SecsPerMin = 60;
|
||||
MSecsPerSec = 1000;
|
||||
|
||||
MinsPerDay = HoursPerDay * MinsPerHour;
|
||||
SecsPerHour = SecsPerMin * MinsPerHour;
|
||||
SecsPerDay = MinsPerDay * SecsPerMin;
|
||||
MSecsPerDay = SecsPerDay * MSecsPerSec;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user