Microsoft Windows SYSTEMTIME structure, stores individual components of date and time as individual fields, up to millisecond precision.
This page hosts a formal specification of Microsoft Windows SYSTEMTIME structure using Kaitai Struct. This specification can be automatically translated into a variety of programming languages to get a parsing library.
meta:
id: windows_systemtime
title: Microsoft Windows SYSTEMTIME structure
xref:
justsolve: Windows_SYSTEMTIME
license: CC0-1.0
endian: le
doc: |
Microsoft Windows SYSTEMTIME structure, stores individual components
of date and time as individual fields, up to millisecond precision.
doc-ref: https://learn.microsoft.com/en-us/windows/win32/api/minwinbase/ns-minwinbase-systemtime
seq:
- id: year
-orig-id: wYear
type: u2
doc: Year
- id: month
-orig-id: wMonth
type: u2
doc: Month (January = 1)
- id: dow
-orig-id: wDayOfWeek
type: u2
doc: Day of week (Sun = 0)
- id: day
-orig-id: wDay
type: u2
doc: Day of month
- id: hour
-orig-id: wHour
type: u2
doc: Hours
- id: min
-orig-id: wMinute
type: u2
doc: Minutes
- id: sec
-orig-id: wSecond
type: u2
doc: Seconds
- id: msec
-orig-id: wMilliseconds
type: u2
doc: Milliseconds