1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/intl/icu/source/common/wintz.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,34 @@ 1.4 +/* 1.5 +******************************************************************************** 1.6 +* Copyright (C) 2005-2011, International Business Machines 1.7 +* Corporation and others. All Rights Reserved. 1.8 +******************************************************************************** 1.9 +* 1.10 +* File WINTZ.H 1.11 +* 1.12 +******************************************************************************** 1.13 +*/ 1.14 + 1.15 +#ifndef __WINTZ 1.16 +#define __WINTZ 1.17 + 1.18 +#include "unicode/utypes.h" 1.19 + 1.20 +#if U_PLATFORM_HAS_WIN32_API 1.21 + 1.22 +/** 1.23 + * \file 1.24 + * \brief C API: Utilities for dealing w/ Windows time zones. 1.25 + */ 1.26 + 1.27 +U_CDECL_BEGIN 1.28 +/* Forward declarations for Windows types... */ 1.29 +typedef struct _TIME_ZONE_INFORMATION TIME_ZONE_INFORMATION; 1.30 +U_CDECL_END 1.31 + 1.32 +U_CFUNC const char* U_EXPORT2 1.33 +uprv_detectWindowsTimeZone(); 1.34 + 1.35 +#endif /* U_PLATFORM_HAS_WIN32_API */ 1.36 + 1.37 +#endif /* __WINTZ */