Jump to content

XYWINSIZE

From EDM2
Revision as of 05:46, 21 February 2020 by Ak120 (talk | contribs) (Created page with "Window position and size structure. typedef struct _XYWINSIZE { SHORT x; X-coordinate of window origin.: SHORT y; /* Y-coordinate of w...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Window position and size structure.

typedef struct _XYWINSIZE {
  SHORT      x;         /*  X-coordinate of window origin. */
  SHORT      y;         /*  Y-coordinate of window origin. */
  SHORT      cx;        /*  Window width. */
  SHORT      cy;        /*  Window height. */
  USHORT     fsWindow;  /*  Window options. */
} XYWINSIZE;

typedef XYWINSIZE *PXYWINSIZE;