intl/icu/source/i18n/wintzimpl.h

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/intl/icu/source/i18n/wintzimpl.h	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,37 @@
     1.4 +/*
     1.5 +********************************************************************************
     1.6 +*   Copyright (C) 2008-2011, International Business Machines
     1.7 +*   Corporation and others.  All Rights Reserved.
     1.8 +********************************************************************************
     1.9 +*
    1.10 +* File WINTZIMPL.H
    1.11 +*
    1.12 +********************************************************************************
    1.13 +*/
    1.14 +
    1.15 +#ifndef __WINTZIMPL
    1.16 +#define __WINTZIMPL
    1.17 +
    1.18 +#include "unicode/utypes.h"
    1.19 +
    1.20 +#if U_PLATFORM_HAS_WIN32_API
    1.21 +/**
    1.22 + * \file 
    1.23 + * \brief C API: Utilities for dealing w/ Windows time zones.
    1.24 + */
    1.25 +U_CDECL_BEGIN
    1.26 +/* Forward declarations for Windows types... */
    1.27 +typedef struct _TIME_ZONE_INFORMATION TIME_ZONE_INFORMATION;
    1.28 +U_CDECL_END
    1.29 +
    1.30 +/*
    1.31 + * This method was moved over from common/wintz.h to allow for access to i18n functions
    1.32 + * needed to get the Windows time zone information without using static tables.
    1.33 + */
    1.34 +U_CAPI UBool U_EXPORT2
    1.35 +uprv_getWindowsTimeZoneInfo(TIME_ZONE_INFORMATION *zoneInfo, const UChar *icuid, int32_t length);
    1.36 +
    1.37 +
    1.38 +#endif /* U_PLATFORM_HAS_WIN32_API */
    1.39 +
    1.40 +#endif /* __WINTZIMPL */

mercurial