create GetInteractiveForms

This commit is contained in:
Kulikova Svetlana
2023-02-01 13:50:51 +03:00
parent cfa55dc3ce
commit 7b604d08b4
8 changed files with 162 additions and 6 deletions

View File

@ -809,6 +809,12 @@ BYTE* CPdfFile::GetLinks(int nPageIndex)
return NULL;
return m_pInternal->pReader->GetLinks(nPageIndex);
}
BYTE* CPdfFile::GetWidgets()
{
if (!m_pInternal->pReader)
return NULL;
return m_pInternal->pReader->GetWidgets();
}
// ------------------------------------------------------------------------