NetBurner 3.5.0
PDF Version
 
timezones.h
1/*NB_REVISION*/
2
3/*NB_COPYRIGHT*/
4#ifndef NB_TIMEZONE_H
5#define NB_TIMEZONE_H
6
7struct TimeZoneRecord
8{
9 const char *Posix;
10 const char *Description;
11 const char *Name;
12 const char *Short_name;
13 int bUsCanada;
14};
15
16extern const TimeZoneRecord *TZRecords;
17
18#endif