OLD | NEW |
1 /* | 1 /* |
2 ****************************************************************************** | 2 ****************************************************************************** |
3 * Copyright (C) 2001-2013, International Business Machines | 3 * Copyright (C) 2001-2014, International Business Machines |
4 * Corporation and others. All Rights Reserved. | 4 * Corporation and others. All Rights Reserved. |
5 ****************************************************************************** | 5 ****************************************************************************** |
6 * file name: uclean.h | 6 * file name: uclean.h |
7 * encoding: US-ASCII | 7 * encoding: US-ASCII |
8 * tab size: 8 (not used) | 8 * tab size: 8 (not used) |
9 * indentation:4 | 9 * indentation:4 |
10 * | 10 * |
11 * created on: 2001July05 | 11 * created on: 2001July05 |
12 * created by: George Rhoten | 12 * created by: George Rhoten |
13 */ | 13 */ |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 * @param f Pointer to a user-supplied free function. | 144 * @param f Pointer to a user-supplied free function. |
145 * @param status Receives error values. | 145 * @param status Receives error values. |
146 * @stable ICU 2.8 | 146 * @stable ICU 2.8 |
147 * @system | 147 * @system |
148 */ | 148 */ |
149 U_STABLE void U_EXPORT2 | 149 U_STABLE void U_EXPORT2 |
150 u_setMemoryFunctions(const void *context, UMemAllocFn *a, UMemReallocFn *r, UMem
FreeFn *f, | 150 u_setMemoryFunctions(const void *context, UMemAllocFn *a, UMemReallocFn *r, UMem
FreeFn *f, |
151 UErrorCode *status); | 151 UErrorCode *status); |
152 | 152 |
153 | 153 |
| 154 #ifndef U_HIDE_DEPRECATED_API |
154 /*******************************************************************************
** | 155 /*******************************************************************************
** |
155 * | 156 * |
156 * Deprecated Functions | 157 * Deprecated Functions |
157 * | 158 * |
158 * The following functions for user supplied mutexes are no longer supported. | 159 * The following functions for user supplied mutexes are no longer supported. |
159 * Any attempt to use them will return a U_UNSUPPORTED_ERROR. | 160 * Any attempt to use them will return a U_UNSUPPORTED_ERROR. |
160 * | 161 * |
161 *******************************************************************************
***/ | 162 *******************************************************************************
***/ |
162 | 163 |
163 /** | 164 /** |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 * @param inc Pointer to a function to do an atomic increment operation. M
ust be non-null. | 245 * @param inc Pointer to a function to do an atomic increment operation. M
ust be non-null. |
245 * @param dec Pointer to a function to do an atomic decrement operation. M
ust be non-null. | 246 * @param dec Pointer to a function to do an atomic decrement operation. M
ust be non-null. |
246 * @param status Receives error values. | 247 * @param status Receives error values. |
247 * @deprecated ICU 52. This function is no longer supported. | 248 * @deprecated ICU 52. This function is no longer supported. |
248 * @system | 249 * @system |
249 */ | 250 */ |
250 U_DEPRECATED void U_EXPORT2 | 251 U_DEPRECATED void U_EXPORT2 |
251 u_setAtomicIncDecFunctions(const void *context, UMtxAtomicFn *inc, UMtxAtomicFn
*dec, | 252 u_setAtomicIncDecFunctions(const void *context, UMtxAtomicFn *inc, UMtxAtomicFn
*dec, |
252 UErrorCode *status); | 253 UErrorCode *status); |
253 | 254 |
| 255 #endif /* U_HIDE_DEPRECATED_API */ |
254 #endif /* U_HIDE_SYSTEM_API */ | 256 #endif /* U_HIDE_SYSTEM_API */ |
255 | 257 |
256 #endif | 258 #endif |
OLD | NEW |