The [MAPI 1.0 Time Zone] section stores information that is used by the MAPI 16-bit implementation of the time-zone API functions provided by 32-bit Windows. The entries that appear in this section are as follows:
[MAPI 1.0 Time Zone]
Bias=minutes
StandardName=string
StandardStart=time structure
StandardBias=minutes
DaylightName=string
DaylightStart=time structure
DaylightBias=minutes
The TIME_ZONE_INFORMATION structure is defined as follows in the Microsoft Platform SDK documentation.
typedef struct _TIME_ZONE_INFORMATION
{
LONG Bias;
WCHAR StandardName[ 32 ];
SYSTEMTIME StandardDate;
LONG StandardBias;
WCHAR DaylightName[ 32 ];
SYSTEMTIME DaylightDate;
LONG DaylightBias;
} TIME_ZONE_INFORMATION;