Jump to content

SCA

From EDM2
Revision as of 17:53, 8 February 2020 by Martini (talk | contribs) (Created page with "Screen change area data structure. ==Example Code== <PRE> typedef struct _SCA { SCA pscaNext; Linked list pointer.: ULONG cRects; ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Screen change area data structure.

Example Code

typedef struct _SCA {
  SCA       pscaNext;                      /*  Linked list pointer. */
  ULONG     cRects;                        /*  Number of rectangles in area. */
  RECTL     arcl[MAX_SCA_RECTS+1];         /*  Rectangle dimensions. */
  ULONG     aulRectSize[MAX_SCA_RECTS+1];  /*  Cached rectangle sizes. */
} SCA;

typedef SCA *PSCA;