djvu structure

This commit is contained in:
Kulikova Svetlana
2021-07-23 18:18:18 +03:00
parent 6ad4a538eb
commit d652e3c32f
11 changed files with 434 additions and 17 deletions

View File

@ -105,3 +105,9 @@ void CDjVuFile::ConvertToPdf(const std::wstring& wsDstPath)
if (m_pImplementation)
m_pImplementation->ConvertToPdf(wsDstPath);
}
BYTE* CDjVuFile::GetStructure()
{
if (m_pImplementation)
return m_pImplementation->GetStructure();
return NULL;
}