RECT: Difference between revisions
Appearance
Created page with " Rectangle structure. typedef struct _RECTL { LONG xLeft; →X-coordinate of left-hand edge of rectangle.: LONG yBottom; /* Y-coordinate of bottom edge o..." |
No edit summary |
||
Line 1: | Line 1: | ||
Rectangle structure. | |||
typedef struct _RECTL { | typedef struct _RECTL { | ||
Line 10: | Line 10: | ||
typedef RECTL * PRECTL ; | typedef RECTL * PRECTL ; | ||
[[Category:Data | [[Category:Data Type]] |
Revision as of 20:46, 25 June 2023
Rectangle structure.
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 ;