FreeRDP/winpr/libwinpr/timezone/WindowsZones.h
akallabeth 0431b6c116
[winpr,timezone] fix windows timezone mappings
* WINDOWS_TZID_ENTRY struct members were inverted
* Entries with multiple IANA entries (separated by space) are now each
  checked for a match
2024-06-24 11:30:25 +02:00

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_ */