From: Jeff Genovy <29107334+jefgen@users.noreply.github.com> Date: Wed, 4 Oct 2017 17:42:36 +0000 (+0000) Subject: ICU-13030 Fix one more location using U_CALLCONV. X-Git-Tag: release-60-rc~54 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=acb0dc3593719e29e84fb1913e22077ba0df9143;p=icu ICU-13030 Fix one more location using U_CALLCONV. X-SVN-Rev: 40547 --- diff --git a/icu4c/source/tools/makeconv/makeconv.h b/icu4c/source/tools/makeconv/makeconv.h index e17439348f3..addc2cb3e7a 100644 --- a/icu4c/source/tools/makeconv/makeconv.h +++ b/icu4c/source/tools/makeconv/makeconv.h @@ -44,18 +44,18 @@ typedef struct NewConverter NewConverter; U_CDECL_BEGIN struct NewConverter { void - (* U_CALLCONV close)(NewConverter *cnvData); + (* U_CALLCONV_FPTR close)(NewConverter *cnvData); /** is this byte sequence valid? */ UBool - (* U_CALLCONV isValid)(NewConverter *cnvData, + (*U_CALLCONV_FPTR isValid)(NewConverter *cnvData, const uint8_t *bytes, int32_t length); UBool - (* U_CALLCONV addTable)(NewConverter *cnvData, UCMTable *table, UConverterStaticData *staticData); + (*U_CALLCONV_FPTR addTable)(NewConverter *cnvData, UCMTable *table, UConverterStaticData *staticData); uint32_t - (* U_CALLCONV write)(NewConverter *cnvData, const UConverterStaticData *staticData, + (*U_CALLCONV_FPTR write)(NewConverter *cnvData, const UConverterStaticData *staticData, UNewDataMemory *pData, int32_t tableType); }; U_CDECL_END