Jump to content

SWP

From EDM2
Revision as of 05:58, 21 February 2020 by Ak120 (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Set-window-position structure.

typedef struct _SWP {
  ULONG     fl;                /*  Options. */
  LONG      cy;                /*  Window height. */
  LONG      cx;                /*  Window width. */
  LONG      y;                 /*  Y-coordinate of origin. */
  LONG      x;                 /*  X-coordinate of origin. */
  HWND      hwndInsertBehind;  /*  Window behind which this window is placed. */
  HWND      hwnd;              /*  Window handle. */
  ULONG     ulReserved1;       /*  Reserved value; must be 0. */
  ULONG     ulReserved2;       /*  Reserved value; must be 0. */
} SWP;

typedef SWP *PSWP;