RGNRECT: Difference between revisions
Appearance
Created page with "Region-rectangle structure. ==Example Code== <PRE> typedef struct _RGNRECT { ULONG ircStart; →Rectangle number from which to start enumerating.: ULONG c..." |
mNo edit summary |
||
Line 1: | Line 1: | ||
Region-rectangle structure. | Region-rectangle structure. | ||
<PRE> | <PRE> | ||
typedef struct _RGNRECT { | typedef struct _RGNRECT { | ||
Line 13: | Line 12: | ||
</PRE> | </PRE> | ||
[[Category:Data type]] | [[Category:PM Data type]] |
Latest revision as of 12:35, 21 February 2020
Region-rectangle structure.
typedef struct _RGNRECT { ULONG ircStart; /* Rectangle number from which to start enumerating. */ ULONG crc; /* Number of rectangles that can be returned. */ ULONG crcReturned; /* Number of rectangles returned. */ ULONG ulDirection; /* Direction in which the returned rectangles are to be ordered. */ } RGNRECT; typedef RGNRECT *PRGNRECT;