michael@0: /* michael@0: ****************************************************************************** michael@0: * * michael@0: * Copyright (C) 2001-2013, International Business Machines * michael@0: * Corporation and others. All Rights Reserved. * michael@0: * * michael@0: ****************************************************************************** michael@0: * file name: ucln_cmn.h michael@0: * encoding: US-ASCII michael@0: * tab size: 8 (not used) michael@0: * indentation:4 michael@0: * michael@0: * created on: 2001July05 michael@0: * created by: George Rhoten michael@0: */ michael@0: michael@0: #ifndef __UCLN_IN_H__ michael@0: #define __UCLN_IN_H__ michael@0: michael@0: #include "unicode/utypes.h" michael@0: #include "ucln.h" michael@0: michael@0: /* michael@0: Please keep the order of enums declared in same order michael@0: as the functions are suppose to be called. michael@0: It's usually best to have child dependencies called first. */ michael@0: typedef enum ECleanupI18NType { michael@0: UCLN_I18N_START = -1, michael@0: UCLN_I18N_IDENTIFIER_INFO, michael@0: UCLN_I18N_SPOOF, michael@0: UCLN_I18N_TRANSLITERATOR, michael@0: UCLN_I18N_REGEX, michael@0: UCLN_I18N_ISLAMIC_CALENDAR, michael@0: UCLN_I18N_CHINESE_CALENDAR, michael@0: UCLN_I18N_HEBREW_CALENDAR, michael@0: UCLN_I18N_ASTRO_CALENDAR, michael@0: UCLN_I18N_DANGI_CALENDAR, michael@0: UCLN_I18N_CALENDAR, michael@0: UCLN_I18N_TIMEZONEFORMAT, michael@0: UCLN_I18N_TIMEZONEGENERICNAMES, michael@0: UCLN_I18N_TIMEZONENAMES, michael@0: UCLN_I18N_ZONEMETA, michael@0: UCLN_I18N_TIMEZONE, michael@0: UCLN_I18N_PLURAL_RULE, michael@0: UCLN_I18N_CURRENCY, michael@0: UCLN_I18N_DECFMT, michael@0: UCLN_I18N_NUMFMT, michael@0: UCLN_I18N_SMPDTFMT, michael@0: UCLN_I18N_USEARCH, michael@0: UCLN_I18N_COLLATOR, michael@0: UCLN_I18N_UCOL, michael@0: UCLN_I18N_UCOL_RES, michael@0: UCLN_I18N_UCOL_BLD, michael@0: UCLN_I18N_CSDET, michael@0: UCLN_I18N_GENDERINFO, michael@0: UCLN_I18N_CDFINFO, michael@0: UCLN_I18N_REGION, michael@0: UCLN_I18N_COUNT /* This must be last */ michael@0: } ECleanupI18NType; michael@0: michael@0: /* Main library cleanup registration function. */ michael@0: /* See common/ucln.h for details on adding a cleanup function. */ michael@0: U_CFUNC void U_EXPORT2 ucln_i18n_registerCleanup(ECleanupI18NType type, michael@0: cleanupFunc *func); michael@0: michael@0: U_CFUNC UBool utrans_transliterator_cleanup(void); michael@0: michael@0: #endif