StretchBlt method
int
StretchBlt(
- Pointer<HDC__> hdcDest,
- int xDest,
- int yDest,
- int wDest,
- int hDest,
- Pointer<HDC__> hdcSrc,
- int xSrc,
- int ySrc,
- int wSrc,
- int hSrc,
- int rop,
)
Implementation
int StretchBlt(
ffi.Pointer<HDC__> hdcDest,
int xDest,
int yDest,
int wDest,
int hDest,
ffi.Pointer<HDC__> hdcSrc,
int xSrc,
int ySrc,
int wSrc,
int hSrc,
int rop,
) {
return (_StretchBlt ??=
_dylib.lookupFunction<_c_StretchBlt, _dart_StretchBlt>('StretchBlt'))(
hdcDest,
xDest,
yDest,
wDest,
hDest,
hdcSrc,
xSrc,
ySrc,
wSrc,
hSrc,
rop,
);
}