-
Notifications
You must be signed in to change notification settings - Fork 4
/
tzutil.pas
702 lines (681 loc) · 21.1 KB
/
tzutil.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
//Unit with timezone support for some Freepascal platforms.
//Tomas Hajny
unit tzutil;
interface
type
DSTSpecType = (DSTMonthWeekDay, DSTMonthDay, DSTJulian, DSTJulianX);
(* Initialized to default values *)
const
TZName: string = '';
TZDSTName: string = '';
TZOffset: longint = 0;
DSTOffset: longint = 0;
DSTStartMonth: byte = 4;
DSTStartWeek: shortint = 1;
DSTStartDay: word = 0;
DSTStartSec: cardinal = 7200;
DSTEndMonth: byte = 10;
DSTEndWeek: shortint = -1;
DSTEndDay: word = 0;
DSTEndSec: cardinal = 10800;
DSTStartSpecType: DSTSpecType = DSTMonthWeekDay;
DSTEndSpecType: DSTSpecType = DSTMonthWeekDay;
function TZSeconds: longint;
(* Return current offset from UTC in seconds while respecting DST *)
implementation
uses
Dos;
function TZSeconds: longint;
const
MonthDays: array [1..12] of byte =
(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
MonthEnds: array [1..12] of word =
(31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365);
var
Y, Mo, D, WD, H, Mi, S, S100: word;
MS, DS, ME, DE: byte;
L: longint;
Second: cardinal;
AfterDSTStart, BeforeDSTEnd: boolean;
function LeapDay: byte;
begin
if (Y mod 400 = 0) or (Y mod 100 <> 0) and (Y mod 4 = 0) then
LeapDay := 1
else
LeapDay := 0;
end;
function FirstDay (MM: byte): byte;
(* What day of week (0-6) is the first day of month MM? *)
var
DD: longint;
begin
if MM < Mo then
begin
DD := D + MonthEnds [Pred (Mo)];
if MM > 1 then
Dec (DD, MonthEnds [Pred (MM)]);
if (MM <= 2) and (Mo > 2) then
Inc (DD, LeapDay);
end
else
if MM > Mo then
begin
DD := - MonthDays [Mo] + D - MonthEnds [Pred (MM)] + MonthEnds [Mo];
if (Mo <= 2) and (MM > 2) then
Dec (DD, LeapDay);
end
else
(* M = MM *)
DD := D;
DD := WD - DD mod 7 + 1;
if DD < 0 then
FirstDay := DD + 7
else
FirstDay := DD mod 7;
end;
begin
TZSeconds := TZOffset;
if DSTOffset <> TZOffset then
begin
GetDate (Y, Mo, D, WD);
GetTime (H, Mi, S, S100);
Second := cardinal (H) * 3600 + Mi * 60 + S;
if (DSTStartSpecType = DSTMonthWeekDay) or (DSTStartSpecType = DSTMonthDay)
then
begin
MS := DSTStartMonth;
if DSTStartSpecType = DSTMonthDay then
DS := DSTStartDay
else
begin
DS := FirstDay (DSTStartMonth);
if (DSTStartWeek >= 1) and (DSTStartWeek <= 4) then
if DSTStartDay < DS then
DS := DSTStartWeek * 7 + DSTStartDay - DS + 1
else
DS := Pred (DSTStartWeek) * 7 + DSTStartDay - DS + 1
else
(* Last week in month *)
begin
DS := DS + MonthDays [MS] - 1;
if MS = 2 then
Inc (DS, LeapDay);
DS := DS mod 7;
if DS < DSTStartDay then
DS := DS + 7 - DSTStartDay
else
DS := DS - DSTStartDay;
DS := MonthDays [MS] - DS;
end;
end;
end
else
begin
(* Julian day *)
L := DSTStartDay;
if (DSTStartSpecType = DSTJulian) then
(* 0-based *)
if (L + LeapDay <= 59) then
Inc (L)
else
L := L + 1 - LeapDay;
if L <= 31 then
begin
MS := 1;
DS := L;
end
else
if (L <= 59) or
(DSTStartSpecType = DSTJulian) and (L - LeapDay <= 59) then
begin
MS := 2;
DS := DSTStartDay - 31;
end
else
begin
MS := 3;
while (MS < 12) and (MonthEnds [MS] > L) do
Inc (MS);
DS := L - MonthEnds [Pred (MS)];
end;
end;
if (DSTEndSpecType = DSTMonthWeekDay) or (DSTEndSpecType = DSTMonthDay) then
begin
ME := DSTEndMonth;
if DSTEndSpecType = DSTMonthDay then
DE := DSTEndDay
else
begin
DE := FirstDay (DSTEndMonth);
if (DSTEndWeek >= 1) and (DSTEndWeek <= 4) then
if DSTEndDay < DE then
DE := DSTEndWeek * 7 + DSTEndDay - DE + 1
else
DE := Pred (DSTEndWeek) * 7 + DSTEndDay - DE + 1
else
(* Last week in month *)
begin
DE := DE + MonthDays [ME] - 1;
if ME = 2 then
Inc (DE, LeapDay);
DE := DE mod 7;
if DE < DSTEndDay then
DE := DE + 7 - DSTEndDay
else
DE := DE - DSTEndDay;
DE := MonthDays [ME] - DE;
end;
end;
end
else
begin
(* Julian day *)
L := DSTEndDay;
if (DSTEndSpecType = DSTJulian) then
(* 0-based *)
if (L + LeapDay <= 59) then
Inc (L)
else
L := L + 1 - LeapDay;
if L <= 31 then
begin
ME := 1;
DE := L;
end
else
if (L <= 59) or
(DSTEndSpecType = DSTJulian) and (L - LeapDay <= 59) then
begin
ME := 2;
DE := DSTEndDay - 31;
end
else
begin
ME := 3;
while (ME < 12) and (MonthEnds [ME] > L) do
Inc (ME);
DE := L - MonthEnds [Pred (ME)];
end;
end;
if Mo < MS then
AfterDSTStart := false
else
if Mo > MS then
AfterDSTStart := true
else
if D < DS then
AfterDSTStart := false
else
if D > DS then
AfterDSTStart := true
else
AfterDSTStart := Second > DSTStartSec;
if Mo > ME then
BeforeDSTEnd := false
else
if Mo < ME then
BeforeDSTEnd := true
else
if D > DE then
BeforeDSTEnd := false
else
if D < DE then
BeforeDSTEnd := true
else
BeforeDSTEnd := Second < DSTEndSec;
if AfterDSTStart and BeforeDSTEnd then
TZSeconds := DSTOffset;
end;
end;
procedure InitTZ;
const
TZEnvName = 'TZ';
EMXTZEnvName = 'EMXTZ';
var
TZ, S: string;
I, J: byte;
Err: longint;
GnuFmt: boolean;
ADSTStartMonth: byte;
ADSTStartWeek: shortint;
ADSTStartDay: word;
ADSTStartSec: cardinal;
ADSTEndMonth: byte;
ADSTEndWeek: shortint;
ADSTEndDay: word;
ADSTEndSec: cardinal;
ADSTStartSpecType: DSTSpecType;
ADSTEndSpecType: DSTSpecType;
ADSTChangeSec: cardinal;
function ParseOffset (OffStr: string): longint;
(* Parse time offset given as [-|+]HH[:MI[:SS]] and return in seconds *)
var
TZShiftHH, TZShiftDir: shortint;
TZShiftMI, TZShiftSS: byte;
N1, N2: byte;
begin
TZShiftHH := 0;
TZShiftMI := 0;
TZShiftSS := 0;
TZShiftDir := 1;
N1 := 1;
while (N1 <= Length (OffStr)) and (OffStr [N1] <> ':') do
Inc (N1);
Val (Copy (OffStr, 1, Pred (N1)), TZShiftHH, Err);
if (Err = 0) and (TZShiftHH >= -24) and (TZShiftHH <= 23) then
begin
(* Normalize the hour offset to -12..11 if necessary *)
if TZShiftHH > 11 then
Dec (TZShiftHH, 24) else
if TZShiftHH < -12 then
Inc (TZShiftHH, 24);
if TZShiftHH < 0 then
TZShiftDir := -1;
if (N1 <= Length (OffStr)) then
begin
N2 := Succ (N1);
while (N2 <= Length (OffStr)) and (OffStr [N2] <> ':') do
Inc (N2);
Val (Copy (OffStr, Succ (N1), N2 - N1), TZShiftMI, Err);
if (Err = 0) and (TZShiftMI <= 59) then
begin
if (N2 <= Length (OffStr)) then
begin
Val (Copy (OffStr, Succ (N2), Length (OffStr) - N2), TZShiftSS, Err);
if (Err <> 0) or (TZShiftSS > 59) then
TZShiftSS := 0;
end
end
else
TZShiftMI := 0;
end;
end
else
TZShiftHH := 0;
ParseOffset := longint (TZShiftHH) * 3600 +
TZShiftDir * (longint (TZShiftMI) * 60 + TZShiftSS);
end;
begin
TZ := GetEnv (TZEnvName);
if TZ = '' then
TZ := GetEnv (EMXTZEnvName);
if TZ <> '' then
begin
TZ := Upcase (TZ);
(* Timezone name *)
I := 1;
while (I <= Length (TZ)) and (TZ [I] in ['A'..'Z']) do
Inc (I);
TZName := Copy (TZ, 1, Pred (I));
if I <= Length (TZ) then
begin
(* Timezone shift *)
J := Succ (I);
while (J <= Length (TZ)) and not (TZ [J] in ['A'..'Z']) do
Inc (J);
TZOffset := ParseOffset (Copy (TZ, I, J - I));
(* DST timezone name *)
I := J;
while (J <= Length (TZ)) and (TZ [J] in ['A'..'Z']) do
Inc (J);
if J > I then
begin
TZDSTName := Copy (TZ, I, J - I);
(* DST timezone name provided; if equal to the standard timezone *)
(* name then DSTOffset is set to be equal to TZOffset by default, *)
(* otherwise it is set to TZOffset - 3600 seconds. *)
if TZDSTName <> TZName then
DSTOffset := -3600 + TZOffset
else
DSTOffset := TZOffset;
end
else
begin
TZDSTName := TZName;
(* No DST timezone name provided => DSTOffset is equal to TZOffset *)
DSTOffset := TZOffset;
end;
if J <= Length (TZ) then
begin
(* Check if DST offset is specified here; *)
(* if not, default value set above is used. *)
if TZ [J] <> ',' then
begin
I := J;
Inc (J);
while (J <= Length (TZ)) and (TZ [J] <> ',') do
Inc (J);
DSTOffset := ParseOffset (Copy (TZ, I, J - I));
end;
if J < Length (TZ) then
begin
Inc (J);
(* DST switching details *)
case TZ [J] of
'M':
begin
(* Mmonth.week.dayofweek[/StartHour] *)
ADSTStartSpecType := DSTMonthWeekDay;
if J >= Length (TZ) then
Exit;
Inc (J);
I := J;
while (J <= Length (TZ)) and not (TZ [J] in ['.', ',', '/']) do
Inc (J);
if (J >= Length (TZ)) or (TZ [J] <> '.') then
Exit;
Val (Copy (TZ, I, J - I), ADSTStartMonth, Err);
if (Err > 0) or (ADSTStartMonth > 12) then
Exit;
Inc (J);
I := J;
while (J <= Length (TZ)) and not (TZ [J] in ['.', ',', '/']) do
Inc (J);
if (J >= Length (TZ)) or (TZ [J] <> '.') then
Exit;
Val (Copy (TZ, I, J - I), ADSTStartWeek, Err);
if (Err > 0) or (ADSTStartWeek < 1) or (ADSTStartWeek > 5) then
Exit;
Inc (J);
I := J;
while (J <= Length (TZ)) and not (TZ [J] in [',', '/']) do
Inc (J);
Val (Copy (TZ, I, J - I), ADSTStartDay, Err);
if (Err > 0) or (ADSTStartDay < 0) or (ADSTStartDay > 6)
or (J >= Length (TZ)) then
Exit;
if TZ [J] = '/' then
begin
Inc (J);
I := J;
while (J <= Length (TZ)) and (TZ [J] <> ',') do
Inc (J);
Val (Copy (TZ, I, J - I), ADSTStartSec, Err);
if (Err > 0) or (ADSTStartSec > 86399) or (J >= Length (TZ))
then
Exit
else
ADSTStartSec := ADSTStartSec * 3600;
end
else
(* Use the preset default *)
ADSTStartSec := DSTStartSec;
Inc (J);
end;
'J':
begin
(* Jjulianday[/StartHour] *)
ADSTStartSpecType := DSTJulianX;
if J >= Length (TZ) then
Exit;
Inc (J);
I := J;
while (J <= Length (TZ)) and not (TZ [J] in [',', '/']) do
Inc (J);
Val (Copy (TZ, I, J - I), ADSTStartDay, Err);
if (Err > 0) or (ADSTStartDay = 0) or (ADSTStartDay > 365)
or (J >= Length (TZ)) then
Exit;
if TZ [J] = '/' then
begin
Inc (J);
I := J;
while (J <= Length (TZ)) and (TZ [J] <> ',') do
Inc (J);
Val (Copy (TZ, I, J - I), ADSTStartSec, Err);
if (Err > 0) or (ADSTStartSec > 86399) or (J >= Length (TZ))
then
Exit
else
ADSTStartSec := ADSTStartSec * 3600;
end
else
(* Use the preset default *)
ADSTStartSec := DSTStartSec;
Inc (J);
end
else
begin
(* Check the used format first - GNU libc / GCC / EMX expect *)
(* "NameOffsetDstname[Dstoffset],Start[/StartHour],End[/EndHour]"; *)
(* if more than one comma (',') is found, the following format is assumed: *)
(* "NameOffsetDstname[Dstoffset],StartMonth,StartWeek,StartDay,StartSecond, *)
(* EndMonth,EndWeek,EndDay,EndSecond,DSTDifference". *)
I := J;
while (J <= Length (TZ)) and (TZ [J] <> ',') do
Inc (J);
S := Copy (TZ, I, J - I);
if J < Length (TZ) then
begin
Inc (J);
I := J;
while (J <= Length (TZ)) and (TZ [J] <> ',') do
Inc (J);
GnuFmt := J > Length (TZ);
end
else
Exit;
if GnuFmt then
begin
ADSTStartSpecType := DSTJulian;
J := Pos ('/', S);
if J = 0 then
begin
Val (S, ADSTStartDay, Err);
if (Err > 0) or (ADSTStartDay > 365) then
Exit;
(* Use the preset default *)
ADSTStartSec := DSTStartSec;
end
else
begin
if J = Length (S) then
Exit;
Val (Copy (S, 1, Pred (J)), ADSTStartDay, Err);
if (Err > 0) or (ADSTStartDay > 365) then
Exit;
Val (Copy (S, Succ (J), Length (S) - J), ADSTStartSec, Err);
if (Err > 0) or (ADSTStartSec > 86399) then
Exit
else
ADSTStartSec := ADSTStartSec * 3600;
end;
J := I;
end
else
begin
Val (S, ADSTStartMonth, Err);
if (Err > 0) or (ADSTStartMonth > 12) then
Exit;
Val (Copy (TZ, I, J - I), ADSTStartWeek, Err);
if (Err > 0) or (ADSTStartWeek < -1) or (ADSTStartWeek > 5) or
(J >= Length (TZ)) then
Exit;
Inc (J);
I := J;
while (J <= Length (TZ)) and (TZ [J] <> ',') do
Inc (J);
Val (Copy (TZ, I, J - I), ADSTStartDay, Err);
if (DSTStartWeek = 0) then
begin
if (Err > 0) or (ADSTStartDay < 1) or (ADSTStartDay > 31)
or (ADSTStartDay > 30) and (ADSTStartMonth in [4, 6, 9, 11])
or (ADSTStartMonth = 2) and (ADSTStartDay > 29) then
Exit;
ADSTStartSpecType := DSTMonthDay;
end
else
begin
if (Err > 0) or (ADSTStartDay < 0) or (ADSTStartDay > 6) then
Exit;
ADSTStartSpecType := DSTMonthWeekDay;
end;
if J >= Length (TZ) then
Exit;
Inc (J);
I := J;
while (J <= Length (TZ)) and (TZ [J] <> ',') do
Inc (J);
Val (Copy (TZ, I, J - I), ADSTStartSec, Err);
if (Err > 0) or (ADSTStartSec > 86399) or (J >= Length (TZ)) then
Exit;
Inc (J);
I := J;
while (J <= Length (TZ)) and (TZ [J] <> ',') do
Inc (J);
Val (Copy (TZ, I, J - I), ADSTEndMonth, Err);
if (Err > 0) or (ADSTEndMonth > 12) or (J >= Length (TZ)) then
Exit;
Inc (J);
I := J;
while (J <= Length (TZ)) and (TZ [J] <> ',') do
Inc (J);
Val (Copy (TZ, I, J - I), ADSTEndWeek, Err);
if (Err > 0) or (ADSTEndWeek < -1) or (ADSTEndWeek > 5)
or (J >= Length (TZ)) then
Exit;
Inc (J);
I := J;
while (J <= Length (TZ)) and (TZ [J] <> ',') do
Inc (J);
Val (Copy (TZ, I, J - I), ADSTEndDay, Err);
if (DSTEndWeek = 0) then
begin
if (Err > 0) or (ADSTEndDay < 1) or (ADSTEndDay > 31)
or (ADSTEndDay > 30) and (ADSTEndMonth in [4, 6, 9, 11])
or (ADSTEndMonth = 2) and (ADSTEndDay > 29) then
Exit;
ADSTEndSpecType := DSTMonthDay;
end
else
begin
if (Err > 0) or (ADSTEndDay < 0) or (ADSTEndDay > 6) then
Exit;
ADSTEndSpecType := DSTMonthWeekDay;
end;
if J >= Length (TZ) then
Exit;
Inc (J);
I := J;
while (J <= Length (TZ)) and (TZ [J] <> ',') do
Inc (J);
Val (Copy (TZ, I, J - I), ADSTEndSec, Err);
if (Err > 0) or (ADSTEndSec > 86399) or (J >= Length (TZ)) then
Exit;
Val (Copy (TZ, Succ (J), Length (TZ) - J), ADSTChangeSec, Err);
if (Err = 0) and (ADSTChangeSec < 86400) then
begin
(* Format complete, all checks successful => accept the parsed values. *)
DSTStartMonth := ADSTStartMonth;
DSTStartWeek := ADSTStartWeek;
DSTStartDay := ADSTStartDay;
DSTStartSec := ADSTStartSec;
DSTEndMonth := ADSTEndMonth;
DSTEndWeek := ADSTEndWeek;
DSTEndDay := ADSTEndDay;
DSTEndSec := ADSTEndSec;
DSTStartSpecType := ADSTStartSpecType;
DSTEndSpecType := ADSTEndSpecType;
DSTOffset := TZOffset - ADSTChangeSec;
end;
(* Parsing finished *)
Exit;
end;
end;
end;
(* GnuFmt - DST end specification *)
if TZ [J] = 'M' then
begin
(* Mmonth.week.dayofweek *)
ADSTEndSpecType := DSTMonthWeekDay;
if J >= Length (TZ) then
Exit;
Inc (J);
I := J;
while (J <= Length (TZ)) and not (TZ [J] in ['.', ',', '/']) do
Inc (J);
if (J >= Length (TZ)) or (TZ [J] <> '.') then
Exit;
Val (Copy (TZ, I, J - I), ADSTEndMonth, Err);
if (Err > 0) or (ADSTEndMonth > 12) then
Exit;
Inc (J);
I := J;
while (J <= Length (TZ)) and not (TZ [J] in ['.', ',', '/']) do
Inc (J);
if (J >= Length (TZ)) or (TZ [J] <> '.') then
Exit;
Val (Copy (TZ, I, J - I), ADSTEndWeek, Err);
if (Err > 0) or (ADSTEndWeek < 1) or (ADSTEndWeek > 5) then
Exit;
Inc (J);
I := J;
while (J <= Length (TZ)) and (TZ [J] <> '/') do
Inc (J);
Val (Copy (TZ, I, J - I), ADSTEndDay, Err);
if (Err > 0) or (ADSTEndDay < 0) or (ADSTEndDay > 6) then
Exit;
end
else
begin
if TZ [J] = 'J' then
begin
(* Jjulianday *)
if J = Length (TZ) then
Exit;
Inc (J);
ADSTEndSpecType := DSTJulianX
end
else
ADSTEndSpecType := DSTJulian;
if J >= Length (TZ) then
Exit;
Inc (J);
I := J;
while (J <= Length (TZ)) and (TZ [J] <> '/') do
Inc (J);
Val (Copy (TZ, I, J - I), ADSTEndDay, Err);
if (Err > 0) or (ADSTEndDay = 0) and (ADSTEndSpecType = DSTJulianX)
or (ADSTEndDay > 365) then
Exit;
end;
if (J <= Length (TZ)) and (TZ [J] = '/') then
begin
if J = Length (TZ) then
Exit;
Val (Copy (TZ, Succ (J), Length (TZ) - J), ADSTEndSec, Err);
if (Err > 0) or (ADSTEndSec > 86399) then
Exit
else
ADSTEndSec := ADSTEndSec * 3600;
end
else
(* Use the preset default *)
ADSTEndSec := DSTEndSec;
(* Format complete, all checks successful => accept the parsed values. *)
if ADSTStartSpecType = DSTMonthWeekDay then
begin
DSTStartMonth := ADSTStartMonth;
DSTStartWeek := ADSTStartWeek;
end;
DSTStartDay := ADSTStartDay;
DSTStartSec := ADSTStartSec;
if ADSTStartSpecType = DSTMonthWeekDay then
begin
DSTEndMonth := ADSTEndMonth;
DSTEndWeek := ADSTEndWeek;
end;
DSTEndDay := ADSTEndDay;
DSTEndSec := ADSTEndSec;
DSTStartSpecType := ADSTStartSpecType;
DSTEndSpecType := ADSTEndSpecType;
end;
end
else
DSTOffset := -3600 + TZOffset;
end;
end;
end;
begin
InitTZ;
end.