Plug-in supplied progress callback function, called by ACDSee periodically during image decoding.
typedef int(__stdcall *CX_ProgressFunc)
(
void* pParam,
int nProgressNum,
int nProgressDen
);
pParam
Type: void*
[in] Progress context.
nProgressNum
Type: int
[in] Numerator of the fraction that represents the progress.
nProgressDen
Type: int
[in] Denominator of the fraction that represents the progress.
For a description of return values, see Return Values.
This function can be used in CX_DecodeImageParams and CX_GetThumbnailParams. Technically gets called by the Image Decoding plug-in doing the decoding.
Header: CX_PlugIn.h