OLD | NEW |
1 /* | 1 /* |
2 ********************************************************************** | 2 ********************************************************************** |
3 * Copyright (C) 1997-2012, International Business Machines | 3 * Copyright (C) 1997-2012,2014, International Business Machines |
4 * Corporation and others. All Rights Reserved. | 4 * Corporation and others. All Rights Reserved. |
5 ********************************************************************** | 5 ********************************************************************** |
6 * | 6 * |
7 * File URES.H (formerly CRESBUND.H) | 7 * File URES.H (formerly CRESBUND.H) |
8 * | 8 * |
9 * Modification History: | 9 * Modification History: |
10 * | 10 * |
11 * Date Name Description | 11 * Date Name Description |
12 * 04/01/97 aliu Creation. | 12 * 04/01/97 aliu Creation. |
13 * 02/22/99 damiba overhaul. | 13 * 02/22/99 damiba overhaul. |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 * <STRONG>Tables</STRONG>: returns the number of resources in th
e table | 223 * <STRONG>Tables</STRONG>: returns the number of resources in th
e table |
224 * <STRONG>single string</STRONG>: returns 1 | 224 * <STRONG>single string</STRONG>: returns 1 |
225 *@see ures_getSize | 225 *@see ures_getSize |
226 * @deprecated ICU 2.8 User ures_getSize instead | 226 * @deprecated ICU 2.8 User ures_getSize instead |
227 */ | 227 */ |
228 U_DEPRECATED int32_t U_EXPORT2 | 228 U_DEPRECATED int32_t U_EXPORT2 |
229 ures_countArrayItems(const UResourceBundle* resourceBundle, | 229 ures_countArrayItems(const UResourceBundle* resourceBundle, |
230 const char* resourceKey, | 230 const char* resourceKey, |
231 UErrorCode* err); | 231 UErrorCode* err); |
232 #endif /* U_HIDE_DEPRECATED_API */ | 232 #endif /* U_HIDE_DEPRECATED_API */ |
| 233 |
233 /** | 234 /** |
234 * Close a resource bundle, all pointers returned from the various ures_getXXX c
alls | 235 * Close a resource bundle, all pointers returned from the various ures_getXXX c
alls |
235 * on this particular bundle should be considered invalid henceforth. | 236 * on this particular bundle should be considered invalid henceforth. |
236 * | 237 * |
237 * @param resourceBundle a pointer to a resourceBundle struct. Can be NULL. | 238 * @param resourceBundle a pointer to a resourceBundle struct. Can be NULL. |
238 * @see ures_open | 239 * @see ures_open |
239 * @stable ICU 2.0 | 240 * @stable ICU 2.0 |
240 */ | 241 */ |
241 U_STABLE void U_EXPORT2 | 242 U_STABLE void U_EXPORT2 |
242 ures_close(UResourceBundle* resourceBundle); | 243 ures_close(UResourceBundle* resourceBundle); |
(...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
877 * This call is similar to uloc_getAvailable(). | 878 * This call is similar to uloc_getAvailable(). |
878 * @param status error code | 879 * @param status error code |
879 * @stable ICU 3.2 | 880 * @stable ICU 3.2 |
880 */ | 881 */ |
881 U_STABLE UEnumeration* U_EXPORT2 | 882 U_STABLE UEnumeration* U_EXPORT2 |
882 ures_openAvailableLocales(const char *packageName, UErrorCode *status); | 883 ures_openAvailableLocales(const char *packageName, UErrorCode *status); |
883 | 884 |
884 | 885 |
885 #endif /*_URES*/ | 886 #endif /*_URES*/ |
886 /*eof*/ | 887 /*eof*/ |
OLD | NEW |