mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-15 09:45:26 +00:00
ICU-13030 Fix one more location using U_CALLCONV.
X-SVN-Rev: 40547
This commit is contained in:
parent
62acf2ae94
commit
acb0dc3593
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue