openjtalkGetFullVoicePathU16 function

Pointer<Int16> openjtalkGetFullVoicePathU16(
  1. Pointer<OpenJTalk> oj,
  2. Pointer<Int16> path,
  3. Pointer<Int16> buffer
)
OPENJTALK_DLL_API char16_t *OPENJTALK_CONVENTION openjtalk_getFullVoicePathU16(OpenJTalk *oj, const char16_t *path, char16_t *buffer)

Implementation

Pointer<Int16> openjtalkGetFullVoicePathU16(
    Pointer<OpenJTalk> oj, Pointer<Int16> path, Pointer<Int16> buffer) {
  final openjtalkGetFullVoicePathU16LookupFunction = libjtalk.lookupFunction<
      Pointer<Int16> Function(
          Pointer<OpenJTalk> oj, Pointer<Int16> path, Pointer<Int16> buffer),
      Pointer<Int16> Function(Pointer<OpenJTalk> oj, Pointer<Int16> path,
          Pointer<Int16> buffer)>('openjtalk_getFullVoicePathU16');
  return openjtalkGetFullVoicePathU16LookupFunction(oj, path, buffer);
}