Jump to content

RECTL: Difference between revisions

From EDM2
No edit summary
Ak120 (talk | contribs)
mNo edit summary
Line 7: Line 7:
typedef  
typedef  


==Example Code==
  typedef struct _RECTL {
  typedef struct _RECTL {
   [[LONG]]    xLeft;    /*  X-coordinate of left-hand edge of rectangle. */
   [[LONG]]    xLeft;    /*  X-coordinate of left-hand edge of rectangle. */
Line 16: Line 15:
   
   
  typedef RECTL *PRECTL;
  typedef RECTL *PRECTL;
RECTL structure:
;xLeft:Minimum x-coordinate of viewing limits
;yBottom:Minimum y-coordinate
;xRight:Maximum x-coordinate of viewing limits
;yTop:Maximum y-coordinate


[[Category:Data type]]
[[Category:Data type]]

Revision as of 05:28, 28 December 2019

Rectangle structure.

Type

RECTL

C Declaration Method

typedef

typedef struct _RECTL {
  LONG     xLeft;    /*  X-coordinate of left-hand edge of rectangle. */
  LONG     yBottom;  /*  Y-coordinate of bottom edge of rectangle. */
  LONG     xRight;   /*  X-coordinate of right-hand edge of rectangle. */
  LONG     yTop;     /*  Y-coordinate of top edge of rectangle. */ 
} RECTL;

typedef RECTL *PRECTL;

RECTL structure:

xLeft
Minimum x-coordinate of viewing limits
yBottom
Minimum y-coordinate
xRight
Maximum x-coordinate of viewing limits
yTop
Maximum y-coordinate