ICU-6149 Use traditional ICU C callback declarations.

X-SVN-Rev: 23485
This commit is contained in:
George Rhoten 2008-02-26 08:40:20 +00:00
parent 2eb00165d0
commit d1b51942ad

View file

@ -701,7 +701,7 @@ uregex_getStackLimit(const URegularExpression *regexp,
//------------------------------------------------------------------------------
U_CAPI void U_EXPORT2
uregex_setMatchCallback(URegularExpression *regexp,
URegexMatchCallback callback,
URegexMatchCallback *callback,
const void *context,
UErrorCode *status) {
if (validateRE(regexp, status)) {
@ -717,7 +717,7 @@ uregex_setMatchCallback(URegularExpression *regexp,
//------------------------------------------------------------------------------
U_CAPI void U_EXPORT2
uregex_getMatchCallback(const URegularExpression *regexp,
URegexMatchCallback *callback,
URegexMatchCallback **callback,
const void **context,
UErrorCode *status) {
if (validateRE(regexp, status)) {