BitBlt function gdi32
The BitBlt function performs a bit-block transfer of the color data corresponding to a rectangle of pixels from the specified source device context into a destination device context.
BOOL BitBlt(
HDC hdc,
int x,
int y,
int cx,
int cy,
HDC hdcSrc,
int x1,
int y1,
DWORD rop
);
Implementation
int BitBlt(int hdc, int x, int y, int cx, int cy, int hdcSrc, int x1, int y1,
int rop) =>
_BitBlt(hdc, x, y, cx, cy, hdcSrc, x1, y1, rop);