intl/icu/source/io/ucln_io.h

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

michael@0 1 /*
michael@0 2 ******************************************************************************
michael@0 3 * *
michael@0 4 * Copyright (C) 2001-2011, International Business Machines *
michael@0 5 * Corporation and others. All Rights Reserved. *
michael@0 6 * *
michael@0 7 ******************************************************************************
michael@0 8 * file name: ucln_io.h
michael@0 9 * encoding: US-ASCII
michael@0 10 * tab size: 8 (not used)
michael@0 11 * indentation:4
michael@0 12 *
michael@0 13 * created on: 2006August11
michael@0 14 * created by: George Rhoten
michael@0 15 */
michael@0 16
michael@0 17 #ifndef __UCLN_IO_H__
michael@0 18 #define __UCLN_IO_H__
michael@0 19
michael@0 20 #include "unicode/utypes.h"
michael@0 21 #include "ucln.h"
michael@0 22
michael@0 23 /*
michael@0 24 Please keep the order of enums declared in same order
michael@0 25 as the functions are suppose to be called. */
michael@0 26 typedef enum ECleanupIOType {
michael@0 27 UCLN_IO_START = -1,
michael@0 28 UCLN_IO_LOCBUND,
michael@0 29 UCLN_IO_PRINTF,
michael@0 30 UCLN_IO_COUNT /* This must be last */
michael@0 31 } ECleanupIOType;
michael@0 32
michael@0 33 /* Main library cleanup registration function. */
michael@0 34 /* See common/ucln.h for details on adding a cleanup function. */
michael@0 35 U_CFUNC void U_EXPORT2 ucln_io_registerCleanup(ECleanupIOType type,
michael@0 36 cleanupFunc *func);
michael@0 37
michael@0 38 #endif

mercurial