OLD | NEW |
1 /* | 1 /* |
2 ******************************************************************************** | 2 ******************************************************************************** |
3 * Copyright (C) 2009-2011, International Business Machines | 3 * Copyright (C) 2009-2013, International Business Machines |
4 * Corporation and others. All Rights Reserved. | 4 * Corporation and others. All Rights Reserved. |
5 ******************************************************************************** | 5 ******************************************************************************** |
6 * | 6 * |
7 * File WINTZIMPL.CPP | 7 * File WINTZIMPL.CPP |
8 * | 8 * |
9 ******************************************************************************** | 9 ******************************************************************************** |
10 */ | 10 */ |
11 | 11 |
12 #include "unicode/utypes.h" | 12 #include "unicode/utypes.h" |
13 | 13 |
14 #if U_PLATFORM_HAS_WIN32_API | 14 #if U_PLATFORM_HAS_WIN32_API && !UCONFIG_NO_FORMATTING |
15 | 15 |
16 #include "wintzimpl.h" | 16 #include "wintzimpl.h" |
17 | 17 |
18 #include "unicode/unistr.h" | 18 #include "unicode/unistr.h" |
19 #include "unicode/timezone.h" | 19 #include "unicode/timezone.h" |
20 #include "unicode/basictz.h" | 20 #include "unicode/basictz.h" |
21 #include "putilimp.h" | 21 #include "putilimp.h" |
22 #include "uassert.h" | 22 #include "uassert.h" |
23 #include "cmemory.h" | 23 #include "cmemory.h" |
24 | 24 |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 uprv_getWindowsTimeZoneInfo(TIME_ZONE_INFORMATION *zoneInfo, const UChar *icuid,
int32_t length) | 148 uprv_getWindowsTimeZoneInfo(TIME_ZONE_INFORMATION *zoneInfo, const UChar *icuid,
int32_t length) |
149 { | 149 { |
150 if (getWindowsTimeZoneInfo(zoneInfo, icuid, length)) { | 150 if (getWindowsTimeZoneInfo(zoneInfo, icuid, length)) { |
151 return TRUE; | 151 return TRUE; |
152 } else { | 152 } else { |
153 return FALSE; | 153 return FALSE; |
154 } | 154 } |
155 } | 155 } |
156 | 156 |
157 #endif | 157 #endif |
OLD | NEW |