Jump to content

BLTRECT

From EDM2
Revision as of 21:08, 5 May 2025 by Martini (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Destination rectangle for a bitblt operation.

Type

typedef struct _BLTRECT {
 ULONG     ulXOrg;  /* X origin of the destination Blt. */
 ULONG     ulYOrg;  /* Y origin of the destination Blt. */
 ULONG     ulXExt;  /* X extent of the BitBlt. */
 ULONG     ulYExt;  /* Y extent of the BitBlt. */
} BLTRECT;

Fields

ulXOrg(ULONG)
X origin of the destination Blt.
ulYOrg(ULONG)
Y origin of the destination Blt.
ulXExt(ULONG)
X extent of the BitBlt.
ulYExt(ULONG)
Y extent of the BitBlt.

C Declaration Method

typedef BLTRECT *PBLTRECT;