IltmmConvert::EstimateOutputSize Example for C

/* Having an IltmmConvert Interface, pConv: */

double Size;

/* After starting conversion, get the expected output file size */
IltmmConvert_EstimateOutputSize(pConv, -1, &Size); 
/* do something with the returned value.*/

L_MULTIMEDIATEX_API void IltmmConvert_EstimateOutputSize_Example (IltmmConvert* pConvert)
{
   double Size;

   /* After starting conversion, get the expected output file size */
   IltmmConvert_EstimateOutputSize(pConvert, -1, &Size); 
 
   /* do something with the returned value.*/
}