-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes to Windows time zone preprocessor #2673
- Loading branch information
1 parent
7435615
commit 9878ca4
Showing
9 changed files
with
163 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters