0431b6c116
* WINDOWS_TZID_ENTRY struct members were inverted * Entries with multiple IANA entries (separated by space) are now each checked for a match
19 lines
371 B
C
19 lines
371 B
C
/*
|
|
* Automatically generated with scripts/update-windows-zones.py
|
|
*/
|
|
#ifndef WINPR_WINDOWS_ZONES_H_
|
|
#define WINPR_WINDOWS_ZONES_H_
|
|
|
|
#include <winpr/wtypes.h>
|
|
|
|
typedef struct
|
|
{
|
|
const char* tzid;
|
|
const char* windows;
|
|
} WINDOWS_TZID_ENTRY;
|
|
|
|
extern const WINDOWS_TZID_ENTRY WindowsZones[];
|
|
extern const size_t WindowsZonesNrElements;
|
|
|
|
#endif /* WINPR_WINDOWS_ZONES_H_ */
|