openjtalkGetHtsVoiceNameU16 function

Pointer<Int16> openjtalkGetHtsVoiceNameU16(
  1. Pointer<OpenJTalk> oj,
  2. Pointer<HtsVoiceFilelist> list,
  3. int i,
  4. Pointer<Int16> name,
)
OPENJTALK_DLL_API char16_t *OPENJTALK_CONVENTION openjtalk_getHTSVoiceNameU16(OpenJTalk *oj, HtsVoiceFilelist *list, unsigned int i, char16_t *name)

Implementation

Pointer<Int16> openjtalkGetHtsVoiceNameU16(Pointer<OpenJTalk> oj,
    Pointer<HtsVoiceFilelist> list, int i, Pointer<Int16> name) {
  final openjtalkGetHtsVoiceNameU16LookupFunction = libjtalk.lookupFunction<
      Pointer<Int16> Function(Pointer<OpenJTalk> oj,
          Pointer<HtsVoiceFilelist> list, Uint32 i, Pointer<Int16> name),
      Pointer<Int16> Function(
          Pointer<OpenJTalk> oj,
          Pointer<HtsVoiceFilelist> list,
          int i,
          Pointer<Int16> name)>('openjtalk_getHTSVoiceNameU16');
  return openjtalkGetHtsVoiceNameU16LookupFunction(oj, list, i, name);
}