TZREG

TZREG

Defines when daylight saving time starts, when the return to standard time occurs, and how many hours the daylight saving shift is.

Quick Info

  typedef struct RenTimeZone {
    long        lBias; 
    long        lStandardBias;
    long        lDaylightBias;
    SYSTEMTIME  stStandardDate;
    SYSTEMTIME  stDaylightDate;
} TZREG;

Members

lBias

Offset from Greenwich Mean Time (GMT).

lStandardBias

Offset from bias during standard time.

lDaylightBias

Offset from bias during daylight saving time.

stStandardDate

Time to switch to standard time.

stDaylightDate

Time to switch to daylight saving time.

Remarks

This structure is similar to TIME_ZONE_INFORMATION. This is the structure used by legacy clients to store time zone information for recurring meetings.

See Also

About Rebasing Calendars Programmatically for Daylight Saving Time

HrCreateApptRebaser

TZRULE