ICCPROFILEDLGPARAMS
typedef struct _ICCPROFILEDLGPARAMS
{
L_UINT uStructSize ;
ICCPROFILEEXT
ICCProfile ;
L_TCHAR szLoadFile [ L_MAXPATH ] ;
L_TCHAR szSaveFile [ L_MAXPATH ] ;
L_UINT32 uDlgFlags ;
LTCOMMDLGHELPCB pfnHelpCallback ;
L_VOID * pHelpCallBackUserData ;
} ICCPROFILEDLGPARAMS, * LPICCPROFILEDLGPARAMS ;
The ICCPROFILEDLGPARAMS structure provides information used to initialize the dialog box created by the LDialogFile::DoModalICCProfile function. After the user closes the dialog box, this structure is updated with information about the user's selections.
Member |
Description |
|
uStructSize |
Size of this structure, in bytes. Use the operator size to calculate this value. |
|
ICCProfile |
A structure that contains the ICC Profile. If this structure contains ICC Profile data the dialog Save button control will be enabled at dialog start up. |
|
szLoadFile |
Character string that contains the name of the file to load ICC Profile from. |
|
szSaveFile |
Character string that contains the name of the file to save ICC Profile to. |
|
uDlgParams |
Flag that indicates the layout and action of the dialog. Possible values are: |
|
|
Value |
Meaning |
|
DLG_ICCPROFILE_SHOW_CONTEXTHELP |
[0x00000001] Dialog should contain a context sensitive help icon. |
|
DLG_ICCPROFILE_SHOW_SAVE |
[0x00000002] Dialog should contain Save ICC Profile options. |
|
DLG_ICCPROFILE_SHOW_LOAD |
[0x00000004] Dialog should contain Load ICC Profile options. |
pfnHelpCallback |
Ignored. |
|
pHelpCallBackUserData |
Ignored. |