#include "ltwrappr.h"
L_INT LSegment::MrcGetPagesCount(pszFileName)
Gets the number of pages in an MRC image file.
Character string that contains the name of the MRC image file.
The number of pages in the given MRC image file.
Required DLLs and Libraries
L_INT LSegment__MrcGetPagesCountExample(L_TCHAR * szFileName, L_INT& nCount)
{
LSegment Segment;
nCount = Segment.MrcGetPagesCount(szFileName);
return SUCCESS;
}