X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/46f4442e9a5a4f3b98b7c1083586332f6a8a99a4..b801cf366c7671a99bdcef84d1e9c0ec64b36723:/icuSources/common/unicode/udata.h diff --git a/icuSources/common/unicode/udata.h b/icuSources/common/unicode/udata.h index 84046d5f..29e46630 100644 --- a/icuSources/common/unicode/udata.h +++ b/icuSources/common/unicode/udata.h @@ -1,7 +1,7 @@ /* ****************************************************************************** * -* Copyright (C) 1999-2008, International Business Machines +* Copyright (C) 1999-2014, International Business Machines * Corporation and others. All Rights Reserved. * ****************************************************************************** @@ -18,6 +18,7 @@ #define __UDATA_H__ #include "unicode/utypes.h" +#include "unicode/localpointer.h" U_CDECL_BEGIN @@ -76,6 +77,10 @@ U_CDECL_BEGIN *
This structure may grow in the future, indicated by the
* size
field.
ICU data must be at least 8-aligned, and should be 16-aligned. + * The UDataInfo struct begins 4 bytes after the start of the data item, + * so it is 4-aligned. + * *
The platform data property fields help determine if a data * file can be efficiently used on a given machine. * The particular fields are of importance only if the data @@ -91,7 +96,7 @@ U_CDECL_BEGIN * *
The formatVersion
field should be used to
* make sure that the format can be interpreted.
- * I may be a good idea to check only for the one or two highest
+ * It may be a good idea to check only for the one or two highest
* of the version elements to allow the data memory to
* get more or somewhat rearranged contents, for as long
* as the using code can still interpret the older contents.
U_USING_DEFAULT_WARNING, U_UNSUPPORTED_ERROR
* @stable ICU 2.0
*/
-
U_STABLE void U_EXPORT2
udata_setCommonData(const void *data, UErrorCode *err);
@@ -329,6 +366,9 @@ udata_setCommonData(const void *data, UErrorCode *err);
* data and allows you to force the it to come out of a user-specified
* pointer.
*
+ * ICU data must be at least 8-aligned, and should be 16-aligned.
+ * See http://userguide.icu-project.org/icudata
+ *
* The format of this data is that of the icu common data file, like 'icudt26l.dat'
* or the corresponding shared library (DLL) file.
* The application must read in or otherwise construct an image of the data and then
@@ -357,24 +397,25 @@ udata_setAppData(const char *packageName, const void *data, UErrorCode *err);
* @stable ICU 3.4
*/
typedef enum UDataFileAccess {
- /** ICU looks for data in single files first, then in packages. (default) */
+ /** ICU looks for data in single files first, then in packages. (default) @stable ICU 3.4 */
UDATA_FILES_FIRST,
- /** ICU only loads data from packages, not from single files. */
+ /** An alias for the default access mode. @stable ICU 3.4 */
+ UDATA_DEFAULT_ACCESS = UDATA_FILES_FIRST,
+ /** ICU only loads data from packages, not from single files. @stable ICU 3.4 */
UDATA_ONLY_PACKAGES,
/** ICU loads data from packages first, and only from single files
- if the data cannot be found in a package. */
+ if the data cannot be found in a package. @stable ICU 3.4 */
UDATA_PACKAGES_FIRST,
- /** ICU does not access the file system for data loading. */
+ /** ICU does not access the file system for data loading. @stable ICU 3.4 */
UDATA_NO_FILES,
- /** An alias for the default access mode. */
- UDATA_DEFAULT_ACCESS = UDATA_FILES_FIRST,
+ /** Number of real UDataFileAccess values. @stable ICU 3.4 */
UDATA_FILE_ACCESS_COUNT
} UDataFileAccess;
/**
* This function may be called to control how ICU loads data. It must be called
- * before any ICU data is loaded, including application data loaded with ures/ResourceBundle or
- * udata APIs. It should be called before u_init. This function is not multithread safe.
+ * before any ICU data is loaded, including application data loaded with
+ * ures/ResourceBundle or udata APIs. This function is not multithread safe.
* The results of calling it while other threads are loading data are undefined.
* @param access The type of file access to be used
* @param status Error code.