L_DlgICCProfile
#include "l_bitmap.h"
L_INT EXT_FUNCTION L_DlgICCProfile(hWndOwner, pDlgParams)
HWND hWndOwner; |
/* owner of dialog */ |
LPICCPROFILEDLGPARAMS pDlgParams; |
/* pointer to a structure */ |
Displays the ICC Profile dialog with load and/or save options.
Parameter |
Description |
hWndOwner |
Handle of the window which owns the dialog. |
pDlgParams |
Pointer to an ICCPROFILEDLGPARAMS structure to be updated with the values entered by the user through the dialog. Set members of this structure, before calling this function, to set the dialog’s initial values. |
Returns
SUCCESS_DLG_CLOSE |
The "Close" button was pressed, and the dialog exited successfully. |
< 1 |
An error occurred. Refer to Return Codes. |
Comments
The ICC Profile dialog can be seen below.
Required DLLs and Libraries
LTDLGFILE For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application |
See Also
Functions: |
|
Topics: |
|
|
Example
L_INT ShowICCProfileDialog ( HWND hWnd )
{
ICCPROFILEDLGPARAMS dlgParams ;
ZeroMemory ( &dlgParams, sizeof ( ICCPROFILEDLGPARAMS
) ) ;
dlgParams.uStructSize = sizeof ( ICCPROFILEDLGPARAMS
) ;
lstrcpy (dlgParams.szLoadFile, TEXT("C:\\"));
lstrcpy (dlgParams.szSaveFile, TEXT("C:\\"));
dlgParams.uDlgFlags = DLG_ICCPROFILE_SHOW_LOAD|DLG_ICCPROFILE_SHOW_SAVE
;
L_DlgICCProfile
( hWnd, &dlgParams ) ;
};