Save work.

This commit is contained in:
Michael R Sweet
2021-04-27 21:22:34 -04:00
parent 11588ce2f5
commit e2e2192ea9
10 changed files with 672 additions and 113 deletions

View File

@@ -15,9 +15,16 @@
//
// '()' - .
// 'pdfioPageCopy()' - Copy a page to a PDF file.
//
pdfio_obj_t *pdfioPageCopy(pdfio_t *pdf, pdfio_obj_t *src)
pdfio_obj_t * // O - Destination page
pdfioPageCopy(pdfio_file_t *pdf, // I - PDF file
pdfio_obj_t *src) // I - Source page
{
// TODO: Implement me
(void)pdf;
(void)src;
return (NULL);
}