Jump to content

CLASSINFO

From EDM2
Revision as of 19:38, 25 May 2024 by Martini (talk | contribs) (Created page with "Class-information structure. typedef struct _CLASSINFO { ULONG flClassStyle; Class-style flags.: PFNWP pfnWindowProc; Window procedure.: ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Class-information structure.

typedef struct _CLASSINFO {
  ULONG     flClassStyle;   /*  Class-style flags. */
  PFNWP     pfnWindowProc;  /*  Window procedure. */
  ULONG     cbWindowData;   /*  Number of additional window words. */
} CLASSINFO;
typedef   CLASSINFO   * PCLASSINFO ;

Fields

flClassStyle (ULONG)
Class-style flags.
pfnWindowProc (PFNWP)
Window procedure.
cbWindowData (ULONG)
Number of additional window words.