GetGlyphIndicesA method

int GetGlyphIndicesA(
  1. Pointer<HDC__> hdc,
  2. Pointer<Int8> lpstr,
  3. int c,
  4. Pointer<Uint16> pgi,
  5. int fl,
)

Implementation

int GetGlyphIndicesA(
  ffi.Pointer<HDC__> hdc,
  ffi.Pointer<ffi.Int8> lpstr,
  int c,
  ffi.Pointer<ffi.Uint16> pgi,
  int fl,
) {
  return _GetGlyphIndicesA(
    hdc,
    lpstr,
    c,
    pgi,
    fl,
  );
}