Escape method

int Escape(
  1. Pointer<HDC__> hdc,
  2. int iEscape,
  3. int cjIn,
  4. Pointer<Int8> pvIn,
  5. Pointer<Void> pvOut,
)

Implementation

int Escape(
  ffi.Pointer<HDC__> hdc,
  int iEscape,
  int cjIn,
  ffi.Pointer<ffi.Int8> pvIn,
  ffi.Pointer<ffi.Void> pvOut,
) {
  return (_Escape ??=
      _dylib.lookupFunction<_c_Escape, _dart_Escape>('Escape'))(
    hdc,
    iEscape,
    cjIn,
    pvIn,
    pvOut,
  );
}