cosmopolitan/libc/nt/struct/dynamictimezoneinformation.h
Justine Tunney b0df6c1fce
Implement proper time zone support
Cosmopolitan now supports 104 time zones. They're embedded inside any
binary that links the localtime() function. Doing so adds about 100kb
to the binary size. This change also gets time zones working properly
on Windows for the first time. It's not needed to have /etc/localtime
exist on Windows, since we can get this information from WIN32. We're
also now updated to the latest version of Paul Eggert's TZ library.
2024-05-04 23:06:37 -07:00

17 lines
550 B
C

#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_DYNAMICTIMEZONEINFORMATION_H_
#define COSMOPOLITAN_LIBC_NT_STRUCT_DYNAMICTIMEZONEINFORMATION_H_
#include "libc/nt/struct/systemtime.h"
struct NtDynamicTimeZoneInformation {
int32_t Bias;
char16_t StandardName[32];
struct NtSystemTime StandardDate;
int32_t StandardBias;
char16_t DaylightName[32];
struct NtSystemTime DaylightDate;
int32_t DaylightBias;
char16_t TimeZoneKeyName[128];
bool32 DynamicDaylightTimeDisabled;
};
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_DYNAMICTIMEZONEINFORMATION_H_ */