// compstui.h
typedef struct _PROPSHEETUI_GETICON_INFO {
WORD cbSize;
WORD Flags;
WORD cxIcon;
WORD cyIcon;
HICON hIcon;
} PROPSHEETUI_GETICON_INFO, *PPROPSHEETUI_GETICON_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
The PROPSHEETUI_GETICON_INFO structure is used as an input parameter to an application's PFNPROPSHEETUI-typed function, when the function is called with a reason value of PROPSHEETUI_REASON_GET_ICON.
cbSizeCPSUI-supplied size, in bytes, of the PROPSHEETUI_GETICON_INFO structure.
FlagsReserved.
cxIconCPSUI-supplied icon width, in pixels.
cyIconCPSUI-supplied icon height, in pixels.
hIconReceives an application-supplied icon handle. If the icon is not loaded, the member must be set to zero.