ICU-4635 UCONFIG fixes

X-SVN-Rev: 19072
This commit is contained in:
George Rhoten 2006-02-06 21:29:49 +00:00
parent 1e440fcb9e
commit e8183d8146
2 changed files with 3 additions and 3 deletions

View File

@ -1157,7 +1157,7 @@ u_strFoldCase(UChar *dest, int32_t destCapacity,
uint32_t options,
UErrorCode *pErrorCode);
#if (defined(U_WCHAR_IS_UTF16) || defined(U_WCHAR_IS_UTF32)) && !UCONFIG_NO_CONVERSION
#if defined(U_WCHAR_IS_UTF16) || defined(U_WCHAR_IS_UTF32) || !UCONFIG_NO_CONVERSION
/**
* Converts a sequence of UChars to wchar_t units.
*
@ -1210,7 +1210,7 @@ u_strFromWCS(UChar *dest,
const wchar_t *src,
int32_t srcLength,
UErrorCode *pErrorCode);
#endif /* (defined(U_WCHAR_IS_UTF16) || defined(U_WCHAR_IS_UTF32)) && !UCONFIG_NO_CONVERSION */
#endif /* defined(U_WCHAR_IS_UTF16) || defined(U_WCHAR_IS_UTF32) || !UCONFIG_NO_CONVERSION */
/**
* Converts a sequence of UChars (UTF-16) to UTF-8 bytes

View File

@ -25,7 +25,7 @@
#include "ustr_imp.h"
#include "ustr_cnv.h"
#if (defined(U_WCHAR_IS_UTF16) || defined(U_WCHAR_IS_UTF32)) && !UCONFIG_NO_CONVERSION
#if defined(U_WCHAR_IS_UTF16) || defined(U_WCHAR_IS_UTF32) || !UCONFIG_NO_CONVERSION
#define _STACK_BUFFER_CAPACITY 1000
#define _BUFFER_CAPACITY_MULTIPLIER 2