// compstui.h
BOOL SetCPSUIUserData(
HWND hDlg,
ULONG_PTR CPSUIUserData
);
View the official Windows Driver Kit DDI referenceNo description available.
CPSUI's SetCPSUIUserData function allows CPSUI applications (including printer interface DLLs) to associate non-displayed data with a property sheet dialog box.
hDlgCaller-supplied handle to a property sheet dialog box. For more information, see the Remarks section below.
CPSUIUserDataCaller-supplied value to be stored.
The function returns TRUE if it is successful in associating the non-displayed data with the property sheet dialog box, and FALSE otherwise.
The SetCPSUIUserData function should be called only from within a dialog box procedure that has been associated with a dialog box by using a DLGPAGE or an EXTPUSH structure.
A value that is stored by calling SetCPSUIUserData can be later retrieved by calling GetCPSUIUserData.
The handle specified for hDlg must be the handle received as input to the dialog box procedure.