openjtalkGetWideCharCode function

int openjtalkGetWideCharCode(
  1. Pointer<Int16> text
)
OPENJTALK_DLL_API long OPENJTALK_CONVENTION openjtalk_getWideCharCode(char16_t *text)

Implementation

int openjtalkGetWideCharCode(Pointer<Int16> text) {
  final openjtalkGetWideCharCodeLookupFunction = libjtalk.lookupFunction<
      Int32 Function(Pointer<Int16> text),
      int Function(Pointer<Int16> text)>('openjtalk_getWideCharCode');
  return openjtalkGetWideCharCodeLookupFunction(text);
}