CX_ProgressFunc function

Plug-in supplied progress callback function, called by ACDSee periodically during image decoding.

Syntax

typedef int(__stdcall *CX_ProgressFunc)
(
   void* pParam,
   int nProgressNum,
   int nProgressDen
);

Parameters

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.

Return Value

For a description of return values, see Return Values.

Remarks

This function can be used in CX_DecodeImageParams and CX_GetThumbnailParams. Technically gets called by the Image Decoding plug-in doing the decoding.

Requirements

Header: CX_PlugIn.h

See also: