BLTRECT: Difference between revisions
Appearance
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
Destination rectangle for a bitblt operation. | Destination rectangle for a bitblt operation. | ||
==Type== | ==Type== | ||
typedef struct _BLTRECT { | typedef struct _BLTRECT { | ||
ULONG ulXOrg; /* | ULONG ulXOrg; /* X origin of the destination Blt. */ | ||
ULONG ulYOrg; /* | ULONG ulYOrg; /* Y origin of the destination Blt. */ | ||
ULONG ulXExt; /* | ULONG ulXExt; /* X extent of the BitBlt. */ | ||
ULONG ulYExt; /* | ULONG ulYExt; /* Y extent of the BitBlt. */ | ||
} BLTRECT; | } BLTRECT; | ||
Revision as of 16:53, 8 February 2020
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;
C Declaration Method
typedef BLTRECT *PBLTRECT;