openjtalkGetCharCode function

int openjtalkGetCharCode(
  1. Pointer<Int8> text
)
OPENJTALK_DLL_API long OPENJTALK_CONVENTION openjtalk_getCharCode(char *text)

Implementation

int openjtalkGetCharCode(Pointer<Int8> text) {
  final openjtalkGetCharCodeLookupFunction = libjtalk.lookupFunction<
      Int32 Function(Pointer<Int8> text),
      int Function(Pointer<Int8> text)>('openjtalk_getCharCode');
  return openjtalkGetCharCodeLookupFunction(text);
}