]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/tools/genrb/reslist.h
ICU-491.11.1.tar.gz
[apple/icu.git] / icuSources / tools / genrb / reslist.h
index 52737afd53d14516e69acb59652c3e5c641ce728..f0eaeff5740084d90738c9b43d5edc89019bad53 100644 (file)
@@ -1,7 +1,7 @@
 /*
 *******************************************************************************
 *
-*   Copyright (C) 2000-2009, International Business Machines
+*   Copyright (C) 2000-2011, International Business Machines
 *   Corporation and others.  All Rights Reserved.
 *
 *******************************************************************************
@@ -130,7 +130,7 @@ struct SResString {
     int8_t fNumCharsForLength;
 };
 
-struct SResource *string_open(struct SRBRoot *bundle, char *tag, const UChar *value, int32_t len, const struct UString* comment, UErrorCode *status);
+struct SResource *string_open(struct SRBRoot *bundle, const char *tag, const UChar *value, int32_t len, const struct UString* comment, UErrorCode *status);
 
 /**
  * Remove a string from a bundle and close (delete) it.
@@ -139,21 +139,21 @@ struct SResource *string_open(struct SRBRoot *bundle, char *tag, const UChar *va
  */
 void bundle_closeString(struct SRBRoot *bundle, struct SResource *string);
 
-struct SResource *alias_open(struct SRBRoot *bundle, char *tag, UChar *value, int32_t len, const struct UString* comment, UErrorCode *status);
+struct SResource *alias_open(struct SRBRoot *bundle, const char *tag, UChar *value, int32_t len, const struct UString* comment, UErrorCode *status);
 
 struct SResIntVector {
     uint32_t fCount;
     uint32_t *fArray;
 };
 
-struct SResource* intvector_open(struct SRBRoot *bundle, char *tag,  const struct UString* comment, UErrorCode *status);
+struct SResource* intvector_open(struct SRBRoot *bundle, const char *tag,  const struct UString* comment, UErrorCode *status);
 void intvector_add(struct SResource *intvector, int32_t value, UErrorCode *status);
 
 struct SResInt {
     uint32_t fValue;
 };
 
-struct SResource *int_open(struct SRBRoot *bundle, char *tag, int32_t value, const struct UString* comment, UErrorCode *status);
+struct SResource *int_open(struct SRBRoot *bundle, const char *tag, int32_t value, const struct UString* comment, UErrorCode *status);
 
 struct SResBinary {
     uint32_t fLength;