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