// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ****************************************************************************** * Copyright (C) 2001-2016, International Business Machines * Corporation and others. All Rights Reserved. ****************************************************************************** * file name: ucln_cmn.h * encoding: UTF-8 * tab size: 8 (not used) * indentation:4 * * created on: 2001July05 * created by: George Rhoten */ #ifndef __UCLN_CMN_H__ #define __UCLN_CMN_H__ #include "unicode/utypes.h" #include "ucln.h" /* These are the cleanup functions for various APIs. */ /* @return true if cleanup complete successfully.*/ U_CFUNC UBool utrace_cleanup(void); U_CFUNC UBool ucln_lib_cleanup(void); /* Please keep the order of enums declared in same order as the cleanup functions are suppose to be called. */ ECleanupCommonType; /* Main library cleanup registration function. */ /* See common/ucln.h for details on adding a cleanup function. */ /* Note: the global mutex must not be held when calling this function. */ U_CFUNC void U_EXPORT2 ucln_common_registerCleanup(ECleanupCommonType type, cleanupFunc *func); #endif