Wed, 31 Dec 2014 07:22:50 +0100
Correct previous dual key logic pending first delivery installment.
michael@0 | 1 | /* |
michael@0 | 2 | ****************************************************************************** |
michael@0 | 3 | * * |
michael@0 | 4 | * Copyright (C) 2001-2013, International Business Machines * |
michael@0 | 5 | * Corporation and others. All Rights Reserved. * |
michael@0 | 6 | * * |
michael@0 | 7 | ****************************************************************************** |
michael@0 | 8 | * file name: ucln_cmn.h |
michael@0 | 9 | * encoding: US-ASCII |
michael@0 | 10 | * tab size: 8 (not used) |
michael@0 | 11 | * indentation:4 |
michael@0 | 12 | * |
michael@0 | 13 | * created on: 2001July05 |
michael@0 | 14 | * created by: George Rhoten |
michael@0 | 15 | */ |
michael@0 | 16 | |
michael@0 | 17 | #ifndef __UCLN_IN_H__ |
michael@0 | 18 | #define __UCLN_IN_H__ |
michael@0 | 19 | |
michael@0 | 20 | #include "unicode/utypes.h" |
michael@0 | 21 | #include "ucln.h" |
michael@0 | 22 | |
michael@0 | 23 | /* |
michael@0 | 24 | Please keep the order of enums declared in same order |
michael@0 | 25 | as the functions are suppose to be called. |
michael@0 | 26 | It's usually best to have child dependencies called first. */ |
michael@0 | 27 | typedef enum ECleanupI18NType { |
michael@0 | 28 | UCLN_I18N_START = -1, |
michael@0 | 29 | UCLN_I18N_IDENTIFIER_INFO, |
michael@0 | 30 | UCLN_I18N_SPOOF, |
michael@0 | 31 | UCLN_I18N_TRANSLITERATOR, |
michael@0 | 32 | UCLN_I18N_REGEX, |
michael@0 | 33 | UCLN_I18N_ISLAMIC_CALENDAR, |
michael@0 | 34 | UCLN_I18N_CHINESE_CALENDAR, |
michael@0 | 35 | UCLN_I18N_HEBREW_CALENDAR, |
michael@0 | 36 | UCLN_I18N_ASTRO_CALENDAR, |
michael@0 | 37 | UCLN_I18N_DANGI_CALENDAR, |
michael@0 | 38 | UCLN_I18N_CALENDAR, |
michael@0 | 39 | UCLN_I18N_TIMEZONEFORMAT, |
michael@0 | 40 | UCLN_I18N_TIMEZONEGENERICNAMES, |
michael@0 | 41 | UCLN_I18N_TIMEZONENAMES, |
michael@0 | 42 | UCLN_I18N_ZONEMETA, |
michael@0 | 43 | UCLN_I18N_TIMEZONE, |
michael@0 | 44 | UCLN_I18N_PLURAL_RULE, |
michael@0 | 45 | UCLN_I18N_CURRENCY, |
michael@0 | 46 | UCLN_I18N_DECFMT, |
michael@0 | 47 | UCLN_I18N_NUMFMT, |
michael@0 | 48 | UCLN_I18N_SMPDTFMT, |
michael@0 | 49 | UCLN_I18N_USEARCH, |
michael@0 | 50 | UCLN_I18N_COLLATOR, |
michael@0 | 51 | UCLN_I18N_UCOL, |
michael@0 | 52 | UCLN_I18N_UCOL_RES, |
michael@0 | 53 | UCLN_I18N_UCOL_BLD, |
michael@0 | 54 | UCLN_I18N_CSDET, |
michael@0 | 55 | UCLN_I18N_GENDERINFO, |
michael@0 | 56 | UCLN_I18N_CDFINFO, |
michael@0 | 57 | UCLN_I18N_REGION, |
michael@0 | 58 | UCLN_I18N_COUNT /* This must be last */ |
michael@0 | 59 | } ECleanupI18NType; |
michael@0 | 60 | |
michael@0 | 61 | /* Main library cleanup registration function. */ |
michael@0 | 62 | /* See common/ucln.h for details on adding a cleanup function. */ |
michael@0 | 63 | U_CFUNC void U_EXPORT2 ucln_i18n_registerCleanup(ECleanupI18NType type, |
michael@0 | 64 | cleanupFunc *func); |
michael@0 | 65 | |
michael@0 | 66 | U_CFUNC UBool utrans_transliterator_cleanup(void); |
michael@0 | 67 | |
michael@0 | 68 | #endif |