2001-08-11 00:29:58 +00:00
|
|
|
/*
|
|
|
|
******************************************************************************
|
|
|
|
* *
|
2003-06-03 06:44:40 +00:00
|
|
|
* Copyright (C) 2001-2003, International Business Machines *
|
2001-08-11 00:29:58 +00:00
|
|
|
* Corporation and others. All Rights Reserved. *
|
|
|
|
* *
|
|
|
|
******************************************************************************
|
|
|
|
* file name: ucln_cmn.h
|
|
|
|
* encoding: US-ASCII
|
|
|
|
* 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"
|
|
|
|
|
2001-08-30 02:59:19 +00:00
|
|
|
/* These are the cleanup functions for various APIs. */
|
2002-07-03 12:05:56 +00:00
|
|
|
/* @return true if cleanup complete successfully.*/
|
2001-08-31 02:14:47 +00:00
|
|
|
U_CFUNC UBool unames_cleanup(void);
|
|
|
|
|
2001-08-30 02:59:19 +00:00
|
|
|
U_CFUNC UBool unorm_cleanup(void);
|
2001-08-11 00:29:58 +00:00
|
|
|
|
2001-08-31 02:14:47 +00:00
|
|
|
U_CFUNC UBool uchar_cleanup(void);
|
|
|
|
|
2002-10-30 18:24:00 +00:00
|
|
|
U_CFUNC UBool pname_cleanup(void);
|
|
|
|
|
2001-09-01 01:55:48 +00:00
|
|
|
U_CFUNC UBool locale_cleanup(void);
|
|
|
|
|
2001-08-30 02:59:19 +00:00
|
|
|
U_CFUNC UBool uloc_cleanup(void);
|
2001-08-11 00:29:58 +00:00
|
|
|
|
2002-11-08 18:07:48 +00:00
|
|
|
U_CFUNC UBool breakiterator_cleanup(void);
|
|
|
|
|
2003-02-28 22:17:06 +00:00
|
|
|
U_CFUNC UBool ustrprep_cleanup(void);
|
|
|
|
|
2003-06-06 22:50:26 +00:00
|
|
|
U_CFUNC UBool U_EXPORT2 ucnv_cleanup(void);
|
2001-08-17 00:18:49 +00:00
|
|
|
|
2001-08-30 02:59:19 +00:00
|
|
|
U_CFUNC UBool ucnv_io_cleanup(void);
|
|
|
|
|
|
|
|
U_CFUNC UBool ures_cleanup(void);
|
|
|
|
|
|
|
|
U_CFUNC UBool udata_cleanup(void);
|
2001-08-25 01:13:21 +00:00
|
|
|
|
2001-08-31 02:14:47 +00:00
|
|
|
U_CFUNC UBool putil_cleanup(void);
|
|
|
|
|
2002-10-30 18:24:00 +00:00
|
|
|
U_CFUNC UBool uset_cleanup(void);
|
2002-05-29 18:36:09 +00:00
|
|
|
|
2002-12-06 00:22:10 +00:00
|
|
|
U_CFUNC UBool service_cleanup(void);
|
|
|
|
|
2003-06-06 22:50:26 +00:00
|
|
|
|
|
|
|
/* Only mutexes should be initialized in these functions. */
|
|
|
|
|
|
|
|
U_CFUNC void ucnv_init(UErrorCode *status);
|
|
|
|
|
|
|
|
U_CFUNC void ures_init(UErrorCode *status);
|
|
|
|
|
2001-08-11 00:29:58 +00:00
|
|
|
#endif
|