-
Notifications
You must be signed in to change notification settings - Fork 20
/
time_zone_information.yaml
62 lines (62 loc) · 1.13 KB
/
time_zone_information.yaml
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
# dtFabric format specification.
---
name: time_zone_information
type: format
description: Time Zone Information (TZI) format
---
name: uint16
type: integer
attributes:
format: unsigned
size: 2
units: bytes
---
name: int32
type: integer
attributes:
format: signed
size: 4
units: bytes
---
name: system_time
type: structure
members:
- name: year
data_type: uint16
- name: month
data_type: uint16
- name: weekday
data_type: uint16
- name: day_of_month
data_type: uint16
- name: hours
data_type: uint16
- name: minutes
data_type: uint16
- name: seconds
data_type: uint16
- name: milliseconds
data_type: uint16
---
name: tzi_record
type: structure
description: Time Zone Information (TZI)
aliases: ['TIME_ZONE_INFORMATION', '_REG_TZI_FORMAT']
attributes:
byte_order: little-endian
members:
- name: bias
aliases: ['Bias']
data_type: int32
- name: standard_bias
aliases: ['StandardBias']
data_type: int32
- name: daylight_bias
aliases: ['DaylightBias']
data_type: int32
- name: standard_date
aliases: ['StandardDate']
data_type: system_time
- name: daylight_date
aliases: ['DaylightDate']
data_type: system_time