CLASSINFO: Difference between revisions
Appearance
Created page with "Class-information structure. typedef struct _CLASSINFO { ULONG flClassStyle; →Class-style flags.: PFNWP pfnWindowProc; →Window procedure.: ..." |
mNo edit summary |
||
Line 6: | Line 6: | ||
ULONG cbWindowData; /* Number of additional window words. */ | ULONG cbWindowData; /* Number of additional window words. */ | ||
} CLASSINFO; | } CLASSINFO; | ||
typedef CLASSINFO * PCLASSINFO ; | typedef CLASSINFO * PCLASSINFO ; | ||
==Fields== | ==Fields== | ||
;flClassStyle (ULONG) | ;flClassStyle (ULONG):Class-style flags. | ||
:Class-style flags. | ;pfnWindowProc (PFNWP): Window procedure. | ||
;cbWindowData (ULONG):Number of additional window words. | |||
; pfnWindowProc (PFNWP) | |||
: Window procedure. | |||
; cbWindowData (ULONG) | |||
:Number of additional window words. | |||
[[Category: Data type]] | [[Category: Data type]] |
Latest revision as of 00:40, 30 May 2024
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.