mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-17 02:37:25 +00:00
ICU-3615 Add API to list ISO currencies.
X-SVN-Rev: 17907
This commit is contained in:
parent
7cf1d71844
commit
79a89261a4
8 changed files with 427 additions and 9 deletions
|
@ -21,6 +21,7 @@
|
|||
#include "uassert.h"
|
||||
#include "mutex.h"
|
||||
#include "ucln_in.h"
|
||||
#include "uenumimp.h"
|
||||
|
||||
//------------------------------------------------------------
|
||||
// Constants
|
||||
|
@ -719,6 +720,375 @@ ucurr_getRoundingIncrement(const UChar* currency, UErrorCode* ec) {
|
|||
return double(data[1]) / POW10[data[0]];
|
||||
}
|
||||
|
||||
U_CDECL_BEGIN
|
||||
|
||||
typedef struct UCurrencyContext {
|
||||
uint32_t currType; /* UCurrCurrencyType */
|
||||
uint32_t listIdx;
|
||||
} UCurrencyContext;
|
||||
|
||||
/*
|
||||
Please keep this list in alphabetical order.
|
||||
You can look at the CLDR supplemental data or ISO-4217 for the meaning of some
|
||||
of these items.
|
||||
ISO-4217: http://www.iso.org/iso/en/prods-services/popstds/currencycodeslist.html
|
||||
*/
|
||||
static const struct CurrencyList {
|
||||
const char *currency;
|
||||
uint32_t currType;
|
||||
} gCurrencyList[] = {
|
||||
{"ADP", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"AED", UCURR_CURRENCY},
|
||||
{"AFA", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"AFN", UCURR_CURRENCY},
|
||||
{"ALL", UCURR_CURRENCY},
|
||||
{"AMD", UCURR_CURRENCY},
|
||||
{"ANG", UCURR_CURRENCY},
|
||||
{"AOA", UCURR_CURRENCY},
|
||||
{"AOK", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"AON", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"AOR", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"ARA", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"ARP", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"ARS", UCURR_CURRENCY},
|
||||
{"ATS", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"AUD", UCURR_CURRENCY},
|
||||
{"AWG", UCURR_CURRENCY},
|
||||
{"AZM", UCURR_CURRENCY},
|
||||
{"BAD", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"BAM", UCURR_CURRENCY},
|
||||
{"BBD", UCURR_CURRENCY},
|
||||
{"BDT", UCURR_CURRENCY},
|
||||
{"BEC", UCURR_DEPRECATED},
|
||||
{"BEF", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"BEL", UCURR_DEPRECATED},
|
||||
{"BGL", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"BGN", UCURR_CURRENCY},
|
||||
{"BHD", UCURR_CURRENCY},
|
||||
{"BIF", UCURR_CURRENCY},
|
||||
{"BMD", UCURR_CURRENCY},
|
||||
{"BND", UCURR_CURRENCY},
|
||||
{"BOB", UCURR_CURRENCY},
|
||||
{"BOP", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"BOV", 0},
|
||||
{"BRB", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"BRC", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"BRE", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"BRL", UCURR_CURRENCY},
|
||||
{"BRN", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"BRR", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"BSD", UCURR_CURRENCY},
|
||||
{"BTN", UCURR_CURRENCY},
|
||||
{"BUK", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"BWP", UCURR_CURRENCY},
|
||||
{"BYB", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"BYR", UCURR_CURRENCY},
|
||||
{"BZD", UCURR_CURRENCY},
|
||||
{"CAD", UCURR_CURRENCY},
|
||||
{"CDF", UCURR_CURRENCY},
|
||||
{"CHE", 0},
|
||||
{"CHF", UCURR_CURRENCY},
|
||||
{"CHW", 0},
|
||||
{"CLF", 0},
|
||||
{"CLP", UCURR_CURRENCY},
|
||||
{"CNY", UCURR_CURRENCY},
|
||||
{"COP", UCURR_CURRENCY},
|
||||
{"COU", 0},
|
||||
{"CRC", UCURR_CURRENCY},
|
||||
{"CSD", UCURR_CURRENCY},
|
||||
{"CSK", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"CUP", UCURR_CURRENCY},
|
||||
{"CVE", UCURR_CURRENCY},
|
||||
{"CYP", UCURR_CURRENCY},
|
||||
{"CZK", UCURR_CURRENCY},
|
||||
{"DDM", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"DEM", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"DJF", UCURR_CURRENCY},
|
||||
{"DKK", UCURR_CURRENCY},
|
||||
{"DOP", UCURR_CURRENCY},
|
||||
{"DZD", UCURR_CURRENCY},
|
||||
{"ECS", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"ECV", UCURR_DEPRECATED},
|
||||
{"EEK", UCURR_CURRENCY},
|
||||
{"EGP", UCURR_CURRENCY},
|
||||
{"EQE", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"ERN", UCURR_CURRENCY},
|
||||
{"ESA", UCURR_DEPRECATED},
|
||||
{"ESB", UCURR_DEPRECATED},
|
||||
{"ESP", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"ETB", UCURR_CURRENCY},
|
||||
{"EUR", UCURR_CURRENCY},
|
||||
{"FIM", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"FJD", UCURR_CURRENCY},
|
||||
{"FKP", UCURR_CURRENCY},
|
||||
{"FRF", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"GBP", UCURR_CURRENCY},
|
||||
{"GEK", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"GEL", UCURR_CURRENCY},
|
||||
{"GHC", UCURR_CURRENCY},
|
||||
{"GIP", UCURR_CURRENCY},
|
||||
{"GMD", UCURR_CURRENCY},
|
||||
{"GNF", UCURR_CURRENCY},
|
||||
{"GNS", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"GQE", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"GRD", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"GTQ", UCURR_CURRENCY},
|
||||
{"GWE", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"GWP", UCURR_CURRENCY},
|
||||
{"GYD", UCURR_CURRENCY},
|
||||
{"HKD", UCURR_CURRENCY},
|
||||
{"HNL", UCURR_CURRENCY},
|
||||
{"HRD", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"HRK", UCURR_CURRENCY},
|
||||
{"HTG", UCURR_CURRENCY},
|
||||
{"HUF", UCURR_CURRENCY},
|
||||
{"IDR", UCURR_CURRENCY},
|
||||
{"IEP", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"ILP", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"ILS", UCURR_CURRENCY},
|
||||
{"INR", UCURR_CURRENCY},
|
||||
{"IQD", UCURR_CURRENCY},
|
||||
{"IRR", UCURR_CURRENCY},
|
||||
{"ISK", UCURR_CURRENCY},
|
||||
{"ITL", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"JMD", UCURR_CURRENCY},
|
||||
{"JOD", UCURR_CURRENCY},
|
||||
{"JPY", UCURR_CURRENCY},
|
||||
{"KES", UCURR_CURRENCY},
|
||||
{"KGS", UCURR_CURRENCY},
|
||||
{"KHR", UCURR_CURRENCY},
|
||||
{"KMF", UCURR_CURRENCY},
|
||||
{"KPW", UCURR_CURRENCY},
|
||||
{"KRW", UCURR_CURRENCY},
|
||||
{"KWD", UCURR_CURRENCY},
|
||||
{"KYD", UCURR_CURRENCY},
|
||||
{"KZT", UCURR_CURRENCY},
|
||||
{"LAK", UCURR_CURRENCY},
|
||||
{"LBP", UCURR_CURRENCY},
|
||||
{"LKR", UCURR_CURRENCY},
|
||||
{"LRD", UCURR_CURRENCY},
|
||||
{"LSL", UCURR_CURRENCY},
|
||||
{"LSM", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"LTL", UCURR_CURRENCY},
|
||||
{"LTT", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"LUC", UCURR_DEPRECATED},
|
||||
{"LUF", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"LUL", UCURR_DEPRECATED},
|
||||
{"LVL", UCURR_CURRENCY},
|
||||
{"LVR", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"LYD", UCURR_CURRENCY},
|
||||
{"MAD", UCURR_CURRENCY},
|
||||
{"MAF", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"MDL", UCURR_CURRENCY},
|
||||
{"MGA", UCURR_CURRENCY},
|
||||
{"MGF", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"MKD", UCURR_CURRENCY},
|
||||
{"MLF", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"MMK", UCURR_CURRENCY},
|
||||
{"MNT", UCURR_CURRENCY},
|
||||
{"MOP", UCURR_CURRENCY},
|
||||
{"MRO", UCURR_CURRENCY},
|
||||
{"MTL", UCURR_CURRENCY},
|
||||
{"MTP", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"MUR", UCURR_CURRENCY},
|
||||
{"MVR", UCURR_CURRENCY},
|
||||
{"MWK", UCURR_CURRENCY},
|
||||
{"MXN", UCURR_CURRENCY},
|
||||
{"MXP", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"MXV", 0},
|
||||
{"MYR", UCURR_CURRENCY},
|
||||
{"MZE", UCURR_CURRENCY},
|
||||
{"MZM", UCURR_CURRENCY},
|
||||
{"NAD", UCURR_CURRENCY},
|
||||
{"NGN", UCURR_CURRENCY},
|
||||
{"NIC", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"NIO", UCURR_CURRENCY},
|
||||
{"NLG", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"NOK", UCURR_CURRENCY},
|
||||
{"NPR", UCURR_CURRENCY},
|
||||
{"NZD", UCURR_CURRENCY},
|
||||
{"OMR", UCURR_CURRENCY},
|
||||
{"PAB", UCURR_CURRENCY},
|
||||
{"PEI", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"PEN", UCURR_CURRENCY},
|
||||
{"PES", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"PGK", UCURR_CURRENCY},
|
||||
{"PHP", UCURR_CURRENCY},
|
||||
{"PKR", UCURR_CURRENCY},
|
||||
{"PLN", UCURR_CURRENCY},
|
||||
{"PLZ", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"PTE", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"PYG", UCURR_CURRENCY},
|
||||
{"QAR", UCURR_CURRENCY},
|
||||
{"RHD", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"ROL", UCURR_CURRENCY},
|
||||
{"RUB", UCURR_CURRENCY},
|
||||
{"RUR", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"RWF", UCURR_CURRENCY},
|
||||
{"SAR", UCURR_CURRENCY},
|
||||
{"SBD", UCURR_CURRENCY},
|
||||
{"SCR", UCURR_CURRENCY},
|
||||
{"SDD", UCURR_CURRENCY},
|
||||
{"SDP", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"SEK", UCURR_CURRENCY},
|
||||
{"SGD", UCURR_CURRENCY},
|
||||
{"SHP", UCURR_CURRENCY},
|
||||
{"SIT", UCURR_CURRENCY},
|
||||
{"SKK", UCURR_CURRENCY},
|
||||
{"SLL", UCURR_CURRENCY},
|
||||
{"SOS", UCURR_CURRENCY},
|
||||
{"SRD", UCURR_CURRENCY},
|
||||
{"SRG", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"STD", UCURR_CURRENCY},
|
||||
{"SUR", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"SVC", UCURR_CURRENCY},
|
||||
{"SYP", UCURR_CURRENCY},
|
||||
{"SZL", UCURR_CURRENCY},
|
||||
{"THB", UCURR_CURRENCY},
|
||||
{"TJR", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"TJS", UCURR_CURRENCY},
|
||||
{"TMM", UCURR_CURRENCY},
|
||||
{"TND", UCURR_CURRENCY},
|
||||
{"TOP", UCURR_CURRENCY},
|
||||
{"TPE", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"TRL", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"TRY", UCURR_CURRENCY},
|
||||
{"TTD", UCURR_CURRENCY},
|
||||
{"TWD", UCURR_CURRENCY},
|
||||
{"TZS", UCURR_CURRENCY},
|
||||
{"UAH", UCURR_CURRENCY},
|
||||
{"UAK", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"UGS", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"UGX", UCURR_CURRENCY},
|
||||
{"USD", UCURR_CURRENCY},
|
||||
{"USN", 0},
|
||||
{"USS", 0},
|
||||
{"UYP", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"UYU", UCURR_CURRENCY},
|
||||
{"UZS", UCURR_CURRENCY},
|
||||
{"VEB", UCURR_CURRENCY},
|
||||
{"VND", UCURR_CURRENCY},
|
||||
{"VUV", UCURR_CURRENCY},
|
||||
{"WST", UCURR_CURRENCY},
|
||||
{"XAF", UCURR_CURRENCY},
|
||||
{"XAG", 0},
|
||||
{"XAU", 0},
|
||||
{"XBA", 0},
|
||||
{"XBB", 0},
|
||||
{"XBC", 0},
|
||||
{"XBD", 0},
|
||||
{"XCD", UCURR_CURRENCY},
|
||||
{"XDR", 0},
|
||||
{"XEU", UCURR_DEPRECATED},
|
||||
{"XFO", 0},
|
||||
{"XFU", 0},
|
||||
{"XOF", UCURR_CURRENCY},
|
||||
{"XPD", 0},
|
||||
{"XPF", UCURR_CURRENCY},
|
||||
{"XPT", 0},
|
||||
{"XRE", 0},
|
||||
{"XTS", 0},
|
||||
{"XXX", 0},
|
||||
{"YDD", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"YER", UCURR_CURRENCY},
|
||||
{"YUD", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"YUM", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"YUN", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"ZAL", 0},
|
||||
{"ZAR", UCURR_CURRENCY},
|
||||
{"ZMK", UCURR_CURRENCY},
|
||||
{"ZRN", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"ZRZ", UCURR_CURRENCY|UCURR_DEPRECATED},
|
||||
{"ZWD", UCURR_CURRENCY},
|
||||
{ NULL, 0 } // Leave here to denote the end of the list.
|
||||
};
|
||||
|
||||
#define UCURR_MATCHES_BITMASK(variable, typeToMatch) \
|
||||
((typeToMatch) == UCURR_ALL || (variable) == (typeToMatch))
|
||||
|
||||
static int32_t U_CALLCONV
|
||||
ucurr_countCurrencyList(UEnumeration *enumerator, UErrorCode *pErrorCode) {
|
||||
UCurrencyContext *myContext = (UCurrencyContext *)(enumerator->context);
|
||||
uint32_t currType = myContext->currType;
|
||||
int32_t count = 0;
|
||||
|
||||
/* Count the number of items matching the type we are looking for. */
|
||||
for (int32_t idx = 0; gCurrencyList[idx].currency != NULL; idx++) {
|
||||
if (UCURR_MATCHES_BITMASK(gCurrencyList[idx].currType, currType)) {
|
||||
count++;
|
||||
}
|
||||
}
|
||||
return count;
|
||||
}
|
||||
|
||||
static const char* U_CALLCONV
|
||||
ucurr_nextCurrencyList(UEnumeration *enumerator,
|
||||
int32_t* resultLength,
|
||||
UErrorCode *pErrorCode)
|
||||
{
|
||||
UCurrencyContext *myContext = (UCurrencyContext *)(enumerator->context);
|
||||
|
||||
/* Find the next in the list that matches the type we are looking for. */
|
||||
while (myContext->listIdx < (sizeof(gCurrencyList)/sizeof(gCurrencyList[0]))-1) {
|
||||
const struct CurrencyList *currItem = &gCurrencyList[myContext->listIdx++];
|
||||
if (UCURR_MATCHES_BITMASK(currItem->currType, myContext->currType))
|
||||
{
|
||||
if (resultLength) {
|
||||
*resultLength = 3; /* Currency codes are only 3 chars long */
|
||||
}
|
||||
return currItem->currency;
|
||||
}
|
||||
}
|
||||
/* We enumerated too far. */
|
||||
*pErrorCode = U_INDEX_OUTOFBOUNDS_ERROR;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static void U_CALLCONV
|
||||
ucurr_resetCurrencyList(UEnumeration *enumerator, UErrorCode *pErrorCode) {
|
||||
((UCurrencyContext *)(enumerator->context))->listIdx = 0;
|
||||
}
|
||||
|
||||
static void U_CALLCONV
|
||||
ucurr_closeCurrencyList(UEnumeration *enumerator) {
|
||||
uprv_free(enumerator->context);
|
||||
uprv_free(enumerator);
|
||||
}
|
||||
|
||||
static const UEnumeration gEnumCurrencyList = {
|
||||
NULL,
|
||||
NULL,
|
||||
ucurr_closeCurrencyList,
|
||||
ucurr_countCurrencyList,
|
||||
uenum_unextDefault,
|
||||
ucurr_nextCurrencyList,
|
||||
ucurr_resetCurrencyList
|
||||
};
|
||||
U_CDECL_END
|
||||
|
||||
U_CAPI UEnumeration * U_EXPORT2
|
||||
ucurr_openISOCurrencies(uint32_t currType, UErrorCode *pErrorCode) {
|
||||
UEnumeration *myEnum = NULL;
|
||||
UCurrencyContext *myContext;
|
||||
|
||||
myEnum = (UEnumeration*)uprv_malloc(sizeof(UEnumeration));
|
||||
if (myEnum == NULL) {
|
||||
*pErrorCode = U_MEMORY_ALLOCATION_ERROR;
|
||||
return NULL;
|
||||
}
|
||||
uprv_memcpy(myEnum, &gEnumCurrencyList, sizeof(UEnumeration));
|
||||
myContext = (UCurrencyContext*)uprv_malloc(sizeof(UCurrencyContext));
|
||||
if (myContext == NULL) {
|
||||
*pErrorCode = U_MEMORY_ALLOCATION_ERROR;
|
||||
uprv_free(myEnum);
|
||||
return NULL;
|
||||
}
|
||||
myContext->currType = currType;
|
||||
myContext->listIdx = 0;
|
||||
myEnum->context = myContext;
|
||||
return myEnum;
|
||||
}
|
||||
|
||||
#endif /* #if !UCONFIG_NO_FORMATTING */
|
||||
|
||||
//eof
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
**********************************************************************
|
||||
* Copyright (c) 2002-2004, International Business Machines
|
||||
* Copyright (c) 2002-2005, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
**********************************************************************
|
||||
*/
|
||||
|
@ -8,6 +8,7 @@
|
|||
#define _UCURR_H_
|
||||
|
||||
#include "unicode/utypes.h"
|
||||
#include "unicode/uenum.h"
|
||||
|
||||
#if !UCONFIG_NO_FORMATTING
|
||||
|
||||
|
@ -158,6 +159,48 @@ U_DRAFT double U_EXPORT2
|
|||
ucurr_getRoundingIncrement(const UChar* currency,
|
||||
UErrorCode* ec);
|
||||
|
||||
/**
|
||||
* Selector constants for ucurr_openCurrencies().
|
||||
*
|
||||
* @see ucurr_openCurrencies
|
||||
* @draft ICU 3.2
|
||||
*/
|
||||
typedef enum UCurrCurrencyType {
|
||||
/**
|
||||
* Select all ISO-4217 currency codes.
|
||||
* @draft ICU 3.2
|
||||
*/
|
||||
UCURR_ALL = 0,
|
||||
/**
|
||||
* Select only ISO-4217 currency codes.
|
||||
* These currencies can be found in common use, and they usually have
|
||||
* bank notes or coins associated with the currency code.
|
||||
* This does not include fund codes, precious metals and other
|
||||
* various ISO-4217 codes limited to special financial products.
|
||||
* @draft ICU 3.2
|
||||
*/
|
||||
UCURR_CURRENCY = 1,
|
||||
/**
|
||||
* Select only deprecated ISO-4217 codes.
|
||||
* These codes are no longer in general public use.
|
||||
* @draft ICU 3.2
|
||||
*/
|
||||
UCURR_DEPRECATED = 2
|
||||
} UCurrCurrencyType;
|
||||
|
||||
/**
|
||||
* Provides a UEnumeration object for listing ISO-4217 codes.
|
||||
* @param currType You can use one of several UCurrCurrencyType values for this
|
||||
* variable. You can also | (or) them together to get a specific list of
|
||||
* currencies. Most people will want to use the UCURR_CURRENCY value to
|
||||
* get a list of current currencies.
|
||||
* @param pErrorCode Error code
|
||||
* @draft ICU 3.2
|
||||
*/
|
||||
U_DRAFT UEnumeration * U_EXPORT2
|
||||
ucurr_openISOCurrencies(uint32_t currType, UErrorCode *pErrorCode);
|
||||
|
||||
|
||||
#ifdef XP_CPLUSPLUS
|
||||
#include "unicode/unistr.h"
|
||||
#include "unicode/parsepos.h"
|
||||
|
|
|
@ -51,7 +51,8 @@ cnmdptst.o cnormtst.o cnumtst.o crestst.o creststn.o cturtst.o \
|
|||
cucdapi.o cucdtst.o custrtst.o cstrcase.o cutiltst.o nucnvtst.o nccbtst.o bocu1tst.o \
|
||||
cbiditst.o cbididat.o eurocreg.o udatatst.o utf16tst.o utransts.o \
|
||||
ncnvfbts.o ncnvtst.o putiltst.o cstrtest.o utf8tst.o ucmptst.o \
|
||||
stdnmtst.o ctstdep.o usrchtst.o custrtrn.o sorttest.o trietest.o usettest.o uenumtst.o utmstest.o \
|
||||
stdnmtst.o ctstdep.o usrchtst.o custrtrn.o sorttest.o trietest.o usettest.o \
|
||||
uenumtst.o utmstest.o currtest.o \
|
||||
idnatest.o nfsprep.o spreptst.o sprpdata.o hpmufn.o tracetst.o reapits.o utexttst.o
|
||||
|
||||
DEPS = $(OBJECTS:.o=.d)
|
||||
|
|
|
@ -31,7 +31,7 @@ void addCollTest(TestNode** root);
|
|||
void addCollTest(TestNode** root)
|
||||
{
|
||||
addCollAPITest(root);
|
||||
addCurrencyTest(root);
|
||||
addCurrencyCollTest(root);
|
||||
addNormTest(root);
|
||||
addGermanCollTest(root);
|
||||
addSpanishCollTest(root);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/********************************************************************
|
||||
* COPYRIGHT:
|
||||
* Copyright (c) 1997-2001, International Business Machines Corporation and
|
||||
* Copyright (c) 1997-2005, International Business Machines Corporation and
|
||||
* others. All Rights Reserved.
|
||||
********************************************************************/
|
||||
/********************************************************************************
|
||||
|
@ -34,7 +34,7 @@ void reportCResult( const UChar source[], const UChar target[],
|
|||
UChar* appendCompareResult(UCollationResult result, UChar* target);
|
||||
|
||||
void addCollAPITest(TestNode**);
|
||||
void addCurrencyTest(TestNode**);
|
||||
void addCurrencyCollTest(TestNode**);
|
||||
void addNormTest(TestNode**);
|
||||
void addDanishCollTest(TestNode**);
|
||||
void addGermanCollTest(TestNode**);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/********************************************************************
|
||||
* COPYRIGHT:
|
||||
* Copyright (c) 1997-2001, International Business Machines Corporation and
|
||||
* Copyright (c) 1997-2005, International Business Machines Corporation and
|
||||
* others. All Rights Reserved.
|
||||
********************************************************************/
|
||||
/********************************************************************************
|
||||
|
@ -29,7 +29,7 @@
|
|||
|
||||
#define ARRAY_LENGTH(array) (sizeof array / sizeof array[0])
|
||||
|
||||
void addCurrencyTest(TestNode** root)
|
||||
void addCurrencyCollTest(TestNode** root)
|
||||
{
|
||||
|
||||
addTest(root, &currTest, "tscoll/ccurrtst/currTest");
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/********************************************************************
|
||||
* COPYRIGHT:
|
||||
* Copyright (c) 1997-2004, International Business Machines Corporation
|
||||
* Copyright (c) 1997-2005, International Business Machines Corporation
|
||||
* and others. All Rights Reserved.
|
||||
********************************************************************/
|
||||
/********************************************************************************
|
||||
|
@ -30,6 +30,7 @@ void addDateForRgrTest(TestNode**);
|
|||
void addNumFrDepTest(TestNode**);
|
||||
void addDtFrDepTest(TestNode**);
|
||||
void addUtmsTest(TestNode**);
|
||||
void addCurrencyTest(TestNode**);
|
||||
|
||||
void addFormatTest(TestNode** root);
|
||||
|
||||
|
@ -43,7 +44,7 @@ void addFormatTest(TestNode** root)
|
|||
addDateForRgrTest(root);
|
||||
addDtFrDepTest(root);
|
||||
addUtmsTest(root);
|
||||
|
||||
addCurrencyTest(root);
|
||||
}
|
||||
/*Internal functions used*/
|
||||
|
||||
|
|
|
@ -390,6 +390,9 @@
|
|||
<File
|
||||
RelativePath=".\cnumtst.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\currtest.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\utmstest.c">
|
||||
</File>
|
||||
|
|
Loading…
Add table
Reference in a new issue