Jump to content

RGNRECT

From EDM2
Revision as of 17:52, 8 February 2020 by Martini (talk | contribs) (Created page with "Region-rectangle structure. ==Example Code== <PRE> typedef struct _RGNRECT { ULONG ircStart; Rectangle number from which to start enumerating.: ULONG c...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Region-rectangle structure.

Example Code

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;