RECTL: Difference between revisions
Appearance
Created page with "Rectangle structure. ==Type== RECTL ==C Declaration Method== typedef ==Example Code== typedef struct _RECTL { LONG xLeft; /* X-coordinate of left-hand..." |
No edit summary |
||
| Line 2: | Line 2: | ||
==Type== | ==Type== | ||
RECTL | |||
==C Declaration Method== | ==C Declaration Method== | ||
| Line 13: | Line 13: | ||
LONG xRight; /* X-coordinate of right-hand edge of rectangle. */ | LONG xRight; /* X-coordinate of right-hand edge of rectangle. */ | ||
LONG yTop; /* Y-coordinate of top edge of rectangle. */ | LONG yTop; /* Y-coordinate of top edge of rectangle. */ | ||
} | } RECTL; | ||
typedef RECTL *PRECTL; | typedef RECTL *PRECTL; | ||
[[Category:Data type]] | [[Category:Data type]] | ||
Revision as of 16:16, 29 August 2017
Rectangle structure.
Type
RECTL
C Declaration Method
typedef
Example Code
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;