mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-3946 Fix some tests to use U_EXPORT2 and U_CALLCONV more often
X-SVN-Rev: 16021
This commit is contained in:
parent
a6432fd203
commit
ecd01239d5
4 changed files with 14 additions and 13 deletions
|
@ -232,7 +232,8 @@ UnicodeString CanonicalIteratorTest::getReadable(const UnicodeString &s) {
|
|||
//return "[" + (verbose ? name->transliterate(s) + "; " : "") + hex->transliterate(s) + "]";
|
||||
}
|
||||
|
||||
U_CFUNC int compareUnicodeStrings(const void *s1, const void *s2) {
|
||||
U_CFUNC int U_CALLCONV
|
||||
compareUnicodeStrings(const void *s1, const void *s2) {
|
||||
UnicodeString **st1 = (UnicodeString **)s1;
|
||||
UnicodeString **st2 = (UnicodeString **)s2;
|
||||
|
||||
|
|
|
@ -241,7 +241,7 @@ CLEANUP:
|
|||
|
||||
|
||||
|
||||
U_CFUNC int32_t
|
||||
U_CFUNC int32_t U_EXPORT2
|
||||
idnaref_toASCII(const UChar* src, int32_t srcLength,
|
||||
UChar* dest, int32_t destCapacity,
|
||||
int32_t options,
|
||||
|
@ -391,7 +391,7 @@ CLEANUP:
|
|||
}
|
||||
|
||||
|
||||
U_CFUNC int32_t
|
||||
U_CFUNC int32_t U_EXPORT2
|
||||
idnaref_toUnicode(const UChar* src, int32_t srcLength,
|
||||
UChar* dest, int32_t destCapacity,
|
||||
int32_t options,
|
||||
|
@ -640,7 +640,7 @@ getNextSeparator(UChar *src,int32_t srcLength,NamePrepTransform* prep,
|
|||
}
|
||||
}
|
||||
|
||||
U_CFUNC int32_t
|
||||
U_CFUNC int32_t U_EXPORT2
|
||||
idnaref_IDNToASCII( const UChar* src, int32_t srcLength,
|
||||
UChar* dest, int32_t destCapacity,
|
||||
int32_t options,
|
||||
|
@ -792,7 +792,7 @@ CLEANUP:
|
|||
return u_terminateUChars(dest, destCapacity, reqLength, status);
|
||||
}
|
||||
|
||||
U_CFUNC int32_t
|
||||
U_CFUNC int32_t U_EXPORT2
|
||||
idnaref_IDNToUnicode( const UChar* src, int32_t srcLength,
|
||||
UChar* dest, int32_t destCapacity,
|
||||
int32_t options,
|
||||
|
@ -941,7 +941,7 @@ CLEANUP:
|
|||
return u_terminateUChars(dest, destCapacity, reqLength, status);
|
||||
}
|
||||
|
||||
U_CFUNC int32_t
|
||||
U_CFUNC int32_t U_EXPORT2
|
||||
idnaref_compare( const UChar *s1, int32_t length1,
|
||||
const UChar *s2, int32_t length2,
|
||||
int32_t options,
|
||||
|
|
|
@ -59,7 +59,7 @@
|
|||
* @return Number of ASCII characters converted.
|
||||
* @draft ICU 2.6
|
||||
*/
|
||||
U_CFUNC int32_t
|
||||
U_CFUNC int32_t U_EXPORT2
|
||||
idnaref_toASCII(const UChar* src, int32_t srcLength,
|
||||
UChar* dest, int32_t destCapacity,
|
||||
int32_t options,
|
||||
|
@ -98,7 +98,7 @@ idnaref_toASCII(const UChar* src, int32_t srcLength,
|
|||
* @return Number of Unicode characters converted.
|
||||
* @draft ICU 2.6
|
||||
*/
|
||||
U_CFUNC int32_t
|
||||
U_CFUNC int32_t U_EXPORT2
|
||||
idnaref_toUnicode(const UChar* src, int32_t srcLength,
|
||||
UChar* dest, int32_t destCapacity,
|
||||
int32_t options,
|
||||
|
@ -142,7 +142,7 @@ idnaref_toUnicode(const UChar* src, int32_t srcLength,
|
|||
* @return Number of ASCII characters converted.
|
||||
* @draft ICU 2.6
|
||||
*/
|
||||
U_CFUNC int32_t
|
||||
U_CFUNC int32_t U_EXPORT2
|
||||
idnaref_IDNToASCII( const UChar* src, int32_t srcLength,
|
||||
UChar* dest, int32_t destCapacity,
|
||||
int32_t options,
|
||||
|
@ -182,7 +182,7 @@ idnaref_IDNToASCII( const UChar* src, int32_t srcLength,
|
|||
* @return Number of ASCII characters converted.
|
||||
* @draft ICU 2.6
|
||||
*/
|
||||
U_CFUNC int32_t
|
||||
U_CFUNC int32_t U_EXPORT2
|
||||
idnaref_IDNToUnicode( const UChar* src, int32_t srcLength,
|
||||
UChar* dest, int32_t destCapacity,
|
||||
int32_t options,
|
||||
|
@ -217,7 +217,7 @@ idnaref_IDNToUnicode( const UChar* src, int32_t srcLength,
|
|||
* @return <0 or 0 or >0 as usual for string comparisons
|
||||
* @draft ICU 2.6
|
||||
*/
|
||||
U_CFUNC int32_t
|
||||
U_CFUNC int32_t U_EXPORT2
|
||||
idnaref_compare( const UChar *s1, int32_t length1,
|
||||
const UChar *s2, int32_t length2,
|
||||
int32_t options,
|
||||
|
|
|
@ -27,12 +27,12 @@
|
|||
|
||||
U_CDECL_BEGIN
|
||||
typedef int32_t
|
||||
(*TestFunc) ( const UChar *src, int32_t srcLength,
|
||||
(U_EXPORT2 *TestFunc) ( const UChar *src, int32_t srcLength,
|
||||
UChar *dest, int32_t destCapacity,
|
||||
int32_t options, UParseError *parseError,
|
||||
UErrorCode *status);
|
||||
typedef int32_t
|
||||
(*CompareFunc) (const UChar *s1, int32_t s1Len,
|
||||
(U_EXPORT2 *CompareFunc) (const UChar *s1, int32_t s1Len,
|
||||
const UChar *s2, int32_t s2Len,
|
||||
int32_t options,
|
||||
UErrorCode *status);
|
||||
|
|
Loading…
Add table
Reference in a new issue