Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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 |