April 24, 2024

Dynamic Windows Function [dw_pixmap_bitblt]

Syntax

void dw_pixmap_bitblt(HWND dest, HPIXMAP destp, int xdest, int ydest, int width, int height, HWND src, HPIXMAP srcp, int xsrc, int ysrc)

Parameters

HWND dest: Destination window handle.
HPIXMAP destp: Destination pixmap. (choose only one).
int xdest: X coordinate of destination.
int ydest: Y coordinate of destination.
int width: Width of area to copy.
int height: Height of area to copy.
HWND src: Source window handle.
HPIXMAP srcp: Source pixmap. (choose only one).
int xsrc: X coordinate of source.
int ysrc: Y coordinate of source.

Description

Copies from one item to another.