]> granicus.if.org Git - icu/commitdiff
ICU-9432 fix value of UDATA_FILE_ACCESS_COUNT
authorMarkus Scherer <markus.icu@gmail.com>
Wed, 18 Jul 2012 21:37:13 +0000 (21:37 +0000)
committerMarkus Scherer <markus.icu@gmail.com>
Wed, 18 Jul 2012 21:37:13 +0000 (21:37 +0000)
X-SVN-Rev: 32041

icu4c/source/common/unicode/udata.h

index 47edbd86c9fc9c3ea92c6e264ddccaee2bb51f42..f9b4cd4423e71c015c5db4dc2af7a41c3fbcf9a1 100644 (file)
@@ -1,7 +1,7 @@
 /*
 ******************************************************************************
 *
-*   Copyright (C) 1999-2010, International Business Machines
+*   Copyright (C) 1999-2012, International Business Machines
 *   Corporation and others.  All Rights Reserved.
 *
 ******************************************************************************
@@ -383,17 +383,18 @@ 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;