IsDBCSLeadByteEx method

int IsDBCSLeadByteEx(
  1. int CodePage,
  2. int TestChar
)

Implementation

int IsDBCSLeadByteEx(
  int CodePage,
  int TestChar,
) {
  return (_IsDBCSLeadByteEx ??=
      _dylib.lookupFunction<_c_IsDBCSLeadByteEx, _dart_IsDBCSLeadByteEx>(
          'IsDBCSLeadByteEx'))(
    CodePage,
    TestChar,
  );
}