| OLD | NEW |
| 1 /* | 1 /* |
| 2 ****************************************************************************** | 2 ****************************************************************************** |
| 3 * * | 3 * * |
| 4 * Copyright (C) 2003-2013, International Business Machines * | 4 * Copyright (C) 2003-2014, International Business Machines * |
| 5 * Corporation and others. All Rights Reserved. * | 5 * Corporation and others. All Rights Reserved. * |
| 6 * * | 6 * * |
| 7 ****************************************************************************** | 7 ****************************************************************************** |
| 8 * file name: ulocdata.h | 8 * file name: ulocdata.h |
| 9 * encoding: US-ASCII | 9 * encoding: US-ASCII |
| 10 * tab size: 8 (not used) | 10 * tab size: 8 (not used) |
| 11 * indentation:4 | 11 * indentation:4 |
| 12 * | 12 * |
| 13 * created on: 2003Oct21 | 13 * created on: 2003Oct21 |
| 14 * created by: Ram Viswanadha | 14 * created by: Ram Viswanadha |
| (...skipping 23 matching lines...) Expand all Loading... |
| 38 /** The possible types of exemplar character sets. | 38 /** The possible types of exemplar character sets. |
| 39 * @stable ICU 3.4 | 39 * @stable ICU 3.4 |
| 40 */ | 40 */ |
| 41 typedef enum ULocaleDataExemplarSetType { | 41 typedef enum ULocaleDataExemplarSetType { |
| 42 /** Basic set @stable ICU 3.4 */ | 42 /** Basic set @stable ICU 3.4 */ |
| 43 ULOCDATA_ES_STANDARD=0, | 43 ULOCDATA_ES_STANDARD=0, |
| 44 /** Auxiliary set @stable ICU 3.4 */ | 44 /** Auxiliary set @stable ICU 3.4 */ |
| 45 ULOCDATA_ES_AUXILIARY=1, | 45 ULOCDATA_ES_AUXILIARY=1, |
| 46 /** Index Character set @stable ICU 4.8 */ | 46 /** Index Character set @stable ICU 4.8 */ |
| 47 ULOCDATA_ES_INDEX=2, | 47 ULOCDATA_ES_INDEX=2, |
| 48 #ifndef U_HIDE_DRAFT_API | 48 /** Punctuation set @stable ICU 51 */ |
| 49 /** Punctuation set @draft ICU 51 */ | |
| 50 ULOCDATA_ES_PUNCTUATION=3, | 49 ULOCDATA_ES_PUNCTUATION=3, |
| 51 #endif /* U_HIDE_DRAFT_API */ | |
| 52 /** One higher than the last valid type @stable ICU 3.4 */ | 50 /** One higher than the last valid type @stable ICU 3.4 */ |
| 53 ULOCDATA_ES_COUNT=4 | 51 ULOCDATA_ES_COUNT=4 |
| 54 } ULocaleDataExemplarSetType; | 52 } ULocaleDataExemplarSetType; |
| 55 | 53 |
| 56 /** The possible types of delimiters. | 54 /** The possible types of delimiters. |
| 57 * @stable ICU 3.4 | 55 * @stable ICU 3.4 |
| 58 */ | 56 */ |
| 59 typedef enum ULocaleDataDelimiterType { | 57 typedef enum ULocaleDataDelimiterType { |
| 60 /** Quotation start @stable ICU 3.4 */ | 58 /** Quotation start @stable ICU 3.4 */ |
| 61 ULOCDATA_QUOTATION_START = 0, | 59 ULOCDATA_QUOTATION_START = 0, |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 * than separatorCapacity, the returned separator will be truncated. | 268 * than separatorCapacity, the returned separator will be truncated. |
| 271 * | 269 * |
| 272 * @stable ICU 4.2 | 270 * @stable ICU 4.2 |
| 273 */ | 271 */ |
| 274 U_STABLE int32_t U_EXPORT2 | 272 U_STABLE int32_t U_EXPORT2 |
| 275 ulocdata_getLocaleSeparator(ULocaleData *uld, | 273 ulocdata_getLocaleSeparator(ULocaleData *uld, |
| 276 UChar *separator, | 274 UChar *separator, |
| 277 int32_t separatorCapacity, | 275 int32_t separatorCapacity, |
| 278 UErrorCode *status); | 276 UErrorCode *status); |
| 279 #endif | 277 #endif |
| OLD | NEW |