* Merging revisions r48716 from trunk:

------------------------------------------------------------------------
    r48716 | michael | 2021-02-19 09:12:46 +0100 (Fri, 19 Feb 2021) | 1 line
    
    * Month constants appeared in Delphi
    ------------------------------------------------------------------------

git-svn-id: branches/fixes_3_2@48935 -
This commit is contained in:
michael 2021-03-10 12:52:30 +00:00
parent 771b27632f
commit e2980ac39b

View File

@ -44,6 +44,19 @@ const
DaySaturday = 6;
DaySunday = 7;
MonthJanuary = 1;
MonthFebruary = 2;
MonthMarch = 3;
MonthApril = 4;
MonthMay = 5;
MonthJune = 6;
MonthJuly = 7;
MonthAugust = 8;
MonthSeptember = 9;
MonthOctober = 10;
MonthNovember = 11;
MonthDecember = 12;
// Fraction of a day
OneHour = TDateTime(1)/HoursPerDay;
OneMinute = TDateTime(1)/MinsPerDay;