| OLD | NEW |
| 1 /* | 1 /* |
| 2 ******************************************************************************* | 2 ******************************************************************************* |
| 3 * Copyright (C) 1996-2014, International Business Machines Corporation and | 3 * Copyright (C) 1996-2015, International Business Machines Corporation and |
| 4 * others. All Rights Reserved. | 4 * others. All Rights Reserved. |
| 5 ******************************************************************************* | 5 ******************************************************************************* |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #ifndef UCAL_H | 8 #ifndef UCAL_H |
| 9 #define UCAL_H | 9 #define UCAL_H |
| 10 | 10 |
| 11 #include "unicode/utypes.h" | 11 #include "unicode/utypes.h" |
| 12 #include "unicode/uenum.h" | 12 #include "unicode/uenum.h" |
| 13 #include "unicode/uloc.h" | 13 #include "unicode/uloc.h" |
| (...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 * to obtain a unique local time value. | 415 * to obtain a unique local time value. |
| 416 * @stable ICU 2.8 | 416 * @stable ICU 2.8 |
| 417 */ | 417 */ |
| 418 UCAL_MILLISECONDS_IN_DAY, | 418 UCAL_MILLISECONDS_IN_DAY, |
| 419 | 419 |
| 420 /** | 420 /** |
| 421 * Whether or not the current month is a leap month (0 or 1). See the Chinese
calendar for | 421 * Whether or not the current month is a leap month (0 or 1). See the Chinese
calendar for |
| 422 * an example of this. | 422 * an example of this. |
| 423 */ | 423 */ |
| 424 UCAL_IS_LEAP_MONTH, | 424 UCAL_IS_LEAP_MONTH, |
| 425 | 425 |
| 426 /** | 426 /** |
| 427 * Field count | 427 * Field count |
| 428 * @stable ICU 2.6 | 428 * @stable ICU 2.6 |
| 429 */ | 429 */ |
| 430 UCAL_FIELD_COUNT, | 430 UCAL_FIELD_COUNT, |
| 431 | 431 |
| 432 /** | 432 /** |
| 433 * Field number indicating the | 433 * Field number indicating the |
| 434 * day of the month. This is a synonym for <code>UCAL_DATE</code>. | 434 * day of the month. This is a synonym for <code>UCAL_DATE</code>. |
| 435 * The first day of the month has value 1. | 435 * The first day of the month has value 1. |
| (...skipping 1115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1551 * | 1551 * |
| 1552 * @stable ICU 52 | 1552 * @stable ICU 52 |
| 1553 */ | 1553 */ |
| 1554 U_STABLE int32_t U_EXPORT2 | 1554 U_STABLE int32_t U_EXPORT2 |
| 1555 ucal_getTimeZoneIDForWindowsID(const UChar* winid, int32_t len, const char* regi
on, | 1555 ucal_getTimeZoneIDForWindowsID(const UChar* winid, int32_t len, const char* regi
on, |
| 1556 UChar* id, int32_t idCapacity, UErrorCode* statu
s); | 1556 UChar* id, int32_t idCapacity, UErrorCode* statu
s); |
| 1557 | 1557 |
| 1558 #endif /* #if !UCONFIG_NO_FORMATTING */ | 1558 #endif /* #if !UCONFIG_NO_FORMATTING */ |
| 1559 | 1559 |
| 1560 #endif | 1560 #endif |
| OLD | NEW |