2001-08-11 00:29:58 +00:00
|
|
|
/*
|
|
|
|
******************************************************************************
|
|
|
|
* *
|
|
|
|
* Copyright (C) 2001-2001, International Business Machines *
|
|
|
|
* 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);
|
|
|
|
|
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
|
|
|
|
2001-08-30 02:59:19 +00:00
|
|
|
U_CFUNC UBool ustring_cleanup(void);
|
2001-08-11 00:29:58 +00:00
|
|
|
|
2001-10-04 20:58:06 +00:00
|
|
|
/* @deprecated this functionality is going away */
|
2002-07-03 12:05:56 +00:00
|
|
|
/* @return true if cleanup complete successfully*/
|
2002-03-01 02:42:06 +00:00
|
|
|
U_CFUNC UBool UnicodeConverter_cleanup(void);
|
2001-10-04 20:58:06 +00:00
|
|
|
|
2002-03-13 18:34:45 +00:00
|
|
|
U_CAPI 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-05-29 18:36:09 +00:00
|
|
|
U_CFUNC UBool upropset_cleanup(void);
|
|
|
|
|
2001-08-11 00:29:58 +00:00
|
|
|
#endif
|