X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/f3c0d7a59d99c2a94c6b8822291f0e42be3773c9..1546d4af2ed1219a41ef4170bf188f2ab91442e6:/icuSources/tools/makeconv/makeconv.h diff --git a/icuSources/tools/makeconv/makeconv.h b/icuSources/tools/makeconv/makeconv.h index e1743934..addc2cb3 100644 --- a/icuSources/tools/makeconv/makeconv.h +++ b/icuSources/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