cosmopolitan/libc/nt/struct/timezoneinformation.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
578 B
C
Raw Permalink Normal View History

#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_ */