Jump to content

BLTRECT: Difference between revisions

From EDM2
mNo edit summary
Ak120 (talk | contribs)
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;  /* 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;



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;