Skip to content

Latest commit

 

History

History
60 lines (39 loc) · 1.42 KB

File metadata and controls

60 lines (39 loc) · 1.42 KB
title manager ms.date ms.audience ms.topic ms.localizationpriority ms.assetid description
TZREG
lindalu
12/07/2015
Developer
reference
medium
a353e1a3-0187-20af-b9ba-43438f6024d5
Defines when daylight saving time starts, when the return to standard time occurs, and how many hours the daylight saving shift is.

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

The offset from Greenwich Mean Time (GMT).

lStandardBias

The offset from bias during standard time.

lDaylightBias

The offset from bias during daylight saving time.

stStandardDate

The time to switch to standard time.

stDaylightDate

The 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