GetGlyphOutlineW method

int GetGlyphOutlineW(
  1. Pointer<HDC__> hdc,
  2. int uChar,
  3. int fuFormat,
  4. Pointer<GLYPHMETRICS> lpgm,
  5. int cjBuffer,
  6. Pointer<Void> pvBuffer,
  7. Pointer<MAT2> lpmat2,
)

Implementation

int GetGlyphOutlineW(
  ffi.Pointer<HDC__> hdc,
  int uChar,
  int fuFormat,
  ffi.Pointer<GLYPHMETRICS> lpgm,
  int cjBuffer,
  ffi.Pointer<ffi.Void> pvBuffer,
  ffi.Pointer<MAT2> lpmat2,
) {
  return _GetGlyphOutlineW(
    hdc,
    uChar,
    fuFormat,
    lpgm,
    cjBuffer,
    pvBuffer,
    lpmat2,
  );
}