c9475e02ae
X-SVN-Rev: 12246
55 lines
1.4 KiB
C
55 lines
1.4 KiB
C
/*
|
|
******************************************************************************
|
|
* *
|
|
* Copyright (C) 2001-2003, 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"
|
|
|
|
/* These are the cleanup functions for various APIs. */
|
|
/* @return true if cleanup complete successfully.*/
|
|
U_CFUNC UBool unames_cleanup(void);
|
|
|
|
U_CFUNC UBool unorm_cleanup(void);
|
|
|
|
U_CFUNC UBool uchar_cleanup(void);
|
|
|
|
U_CFUNC UBool pname_cleanup(void);
|
|
|
|
U_CFUNC UBool locale_cleanup(void);
|
|
|
|
U_CFUNC UBool uloc_cleanup(void);
|
|
|
|
U_CFUNC UBool breakiterator_cleanup(void);
|
|
|
|
U_CFUNC UBool ustrprep_cleanup(void);
|
|
|
|
U_CAPI UBool U_EXPORT2 ucnv_cleanup(void);
|
|
|
|
U_CFUNC UBool ucnv_io_cleanup(void);
|
|
|
|
U_CFUNC UBool ures_cleanup(void);
|
|
|
|
U_CFUNC UBool udata_cleanup(void);
|
|
|
|
U_CFUNC UBool putil_cleanup(void);
|
|
|
|
U_CFUNC UBool uset_cleanup(void);
|
|
|
|
U_CFUNC UBool service_cleanup(void);
|
|
|
|
#endif
|