Jump to content

WNDPARAMS

From EDM2
Revision as of 05:49, 21 February 2020 by Ak120 (talk | contribs) (Created page with "Window parameters. typedef struct _WNDPARAMS { ULONG fsStatus; Window parameter selection.: ULONG cchText; Length of window text.: ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Window parameters.

typedef struct _WNDPARAMS {
  ULONG     fsStatus;      /*  Window parameter selection. */
  ULONG     cchText;       /*  Length of window text. */
  PSZ       pszText;       /*  Window text. */
  ULONG     cbPresParams;  /*  Length of presentation parameters. */
  PVOID     pPresParams;   /*  Presentation parameters. */
  ULONG     cbCtlData;     /*  Length of window class specific data. */
  PVOID     pCtlData;      /*  Window class specific data. */
} WNDPARAMS;

typedef WNDPARAMS *PWNDPARAMS;