typedef struct _FILESAVEFORMAT
{
L_UINT uStructSize;
L_INT32 nFormat;
L_INT nBppCount;
LPFILESAVEFORMATBPP pFileSaveFormatBpp;
} FILESAVEFORMAT, * LPFILESAVEFORMAT ;
The FILESAVEFORMAT structure contains information used to customize the formats, BPP options, and subformats included in the dialogs displayed by the L_DlgFileConversion and L_DlgSave functions.
Size of this structure, in bytes. Use the sizeof operator to calculate this value.
Value that indicates the file format type to include in the Save dialog or the File Conversion dialog. For a list of possible values, refer to Customizing File Format Lists.
Number of items in pFileSaveFormatBpp. This must be set only if the format in the nFormat contains more than one BPP option. For information on the available BPP, refer to Customizing File Format Lists.
Pointer to an array of FILESAVEFORMATBPP structures that will contain the BPP options and sub-formats to include.