18b87b0965
X-SVN-Rev: 27258
39 lines
1.1 KiB
C
39 lines
1.1 KiB
C
/*
|
|
**********************************************************************
|
|
* Copyright (C) 2004-2010, International Business Machines
|
|
* Corporation and others. All Rights Reserved.
|
|
**********************************************************************
|
|
*/
|
|
|
|
#ifndef ULOCIMP_H
|
|
#define ULOCIMP_H
|
|
|
|
#include "unicode/uloc.h"
|
|
|
|
/**
|
|
* Create an iterator over the specified keywords list
|
|
* @param keywordList double-null terminated list. Will be copied.
|
|
* @param keywordListSize size in bytes of keywordList
|
|
* @param status err code
|
|
* @return enumeration (owned by caller) of the keyword list.
|
|
* @internal ICU 3.0
|
|
*/
|
|
U_CAPI UEnumeration* U_EXPORT2
|
|
uloc_openKeywordList(const char *keywordList, int32_t keywordListSize, UErrorCode* status);
|
|
|
|
/**
|
|
* Look up a resource bundle table item with fallback on the table level.
|
|
* This is accessible so it can be called by C++ code.
|
|
*/
|
|
U_CAPI const UChar * U_EXPORT2
|
|
uloc_getTableStringWithFallback(
|
|
const char *path,
|
|
const char *locale,
|
|
const char *tableKey,
|
|
const char *subTableKey,
|
|
const char *itemKey,
|
|
int32_t *pLength,
|
|
UErrorCode *pErrorCode);
|
|
|
|
#endif
|