intl/icu/source/common/ulist.h

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     1 /*
     2 ******************************************************************************
     3 *   Copyright (C) 2009, International Business Machines
     4 *   Corporation and others.  All Rights Reserved.
     5 ******************************************************************************
     6 */
     8 #ifndef ULIST_H
     9 #define ULIST_H
    11 #include "unicode/utypes.h"
    12 #include "unicode/uenum.h"
    14 struct UList;
    15 typedef struct UList UList;
    17 U_CAPI UList * U_EXPORT2 ulist_createEmptyList(UErrorCode *status);
    19 U_CAPI void U_EXPORT2 ulist_addItemEndList(UList *list, const void *data, UBool forceDelete, UErrorCode *status);
    21 U_CAPI void U_EXPORT2 ulist_addItemBeginList(UList *list, const void *data, UBool forceDelete, UErrorCode *status);
    23 U_CAPI UBool U_EXPORT2 ulist_containsString(const UList *list, const char *data, int32_t length);
    25 U_CAPI void *U_EXPORT2 ulist_getNext(UList *list);
    27 U_CAPI int32_t U_EXPORT2 ulist_getListSize(const UList *list);
    29 U_CAPI void U_EXPORT2 ulist_resetList(UList *list);
    31 U_CAPI void U_EXPORT2 ulist_deleteList(UList *list);
    33 /*
    34  * The following are for use when creating UEnumeration object backed by UList.
    35  */
    36 U_CAPI void U_EXPORT2 ulist_close_keyword_values_iterator(UEnumeration *en);
    38 U_CAPI int32_t U_EXPORT2 ulist_count_keyword_values(UEnumeration *en, UErrorCode *status);
    40 U_CAPI const char * U_EXPORT2 ulist_next_keyword_value(UEnumeration* en, int32_t *resultLength, UErrorCode* status);
    42 U_CAPI void U_EXPORT2 ulist_reset_keyword_values_iterator(UEnumeration* en, UErrorCode* status);
    44 U_CAPI UList * U_EXPORT2 ulist_getListFromEnum(UEnumeration *en);
    46 #endif

mercurial