mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-12 01:08:00 +00:00
16 lines
578 B
C
16 lines
578 B
C
|
#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_TIMEZONEINFORMATION_H_
|
||
|
#define COSMOPOLITAN_LIBC_NT_STRUCT_TIMEZONEINFORMATION_H_
|
||
|
#include "libc/nt/struct/systemtime.h"
|
||
|
|
||
|
struct NtTimeZoneInformation {
|
||
|
int Bias; /* in minutes e.g. +480 for -8:00 */
|
||
|
char16_t StandardName[32]; /* e.g. "Pacific Standard Time" */
|
||
|
struct NtSystemTime StandardDate;
|
||
|
int StandardBias;
|
||
|
char16_t DaylightName[32]; /* e.g. "Pacific Daylight Time" */
|
||
|
struct NtSystemTime DaylightDate;
|
||
|
int DaylightBias; /* e.g. -60 */
|
||
|
};
|
||
|
|
||
|
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_TIMEZONEINFORMATION_H_ */
|