Updating html_manual/splits

This commit is contained in:
John Whitington
2022-01-26 12:41:19 +00:00
parent aa65ab647f
commit c067482046
22 changed files with 265 additions and 142 deletions

View File

@@ -68,3 +68,16 @@ void cpdf_setBookmarkText(int, const char[]);
*/
void cpdf_endSetBookmarkInfo(int);
/* cpdf_getBookmarksJSON(pdf, length) returns the bookmark data and sets the
* length. */
void *cpdf_getBookmarksJSON(int, int *);
/* cpdf_setBookmarksJSON(pdf, data, datalength) sets the bookmarks from JSON
* bookmark data. */
void cpdf_setBookmarksJSON(int, void *, int);
/* cpdf_tableOfContents(pdf, font, fontsize, title, bookmark) typesets a table
* of contents from existing bookmarks and prepends it to the document. If
* bookmark is set, the table of contents gets its own bookmark. */
void cpdf_tableOfContents(int, int, double, const char[], int);