BLTRECT: Difference between revisions
Appearance
Created page with "Destination rectangle for a bitblt operation. ==Type== typedef struct _BLTRECT { ULONG ulXOrg; →X origin of the destination Blt.: ULONG ulYOrg; /* Y orig..." |
mNo edit summary |
||
Line 2: | Line 2: | ||
==Type== | ==Type== | ||
typedef struct _BLTRECT { | typedef struct _BLTRECT { | ||
ULONG ulXOrg; /* X origin of the destination Blt. */ | ULONG ulXOrg; /* X origin of the destination Blt. */ | ||
ULONG ulYOrg; /* Y origin of the destination Blt. */ | ULONG ulYOrg; /* Y origin of the destination Blt. */ | ||
ULONG ulXExt; /* X extent of the BitBlt. */ | ULONG ulXExt; /* X extent of the BitBlt. */ | ||
ULONG ulYExt; /* Y extent of the BitBlt. */ | ULONG ulYExt; /* Y extent of the BitBlt. */ | ||
} BLTRECT; | } BLTRECT; | ||
==C Declaration Method== | ==C Declaration Method== | ||
typedef BLTRECT *PBLTRECT; | typedef BLTRECT *PBLTRECT; | ||
[[Category:Data type]] | [[Category:Data type]] |
Revision as of 15:48, 27 December 2019
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;