8cc6582044
* Unified enum/struct definitions, fixed include issues * Fixed mac compilation issues * Added missing include * Fixed windows server build warnings * Fixed VS2010 build issue * Removed unnecessary library linking * Fixed ThreadPool WinXP compatibility * Fixed pr review remarks
19 lines
391 B
C
19 lines
391 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* windows;
|
|
const char* tzid;
|
|
} WINDOWS_TZID_ENTRY;
|
|
|
|
extern const WINDOWS_TZID_ENTRY WindowsTimeZoneIdTable[];
|
|
extern const size_t WindowsTimeZoneIdTableNrElements;
|
|
|
|
#endif /* WINPR_WINDOWS_ZONES_H_ */
|