Start fleshing out writing/copying interfaces.

This commit is contained in:
Michael R Sweet
2021-05-15 09:29:37 -04:00
parent 17f2cc213e
commit 4bb81417a8
3 changed files with 31 additions and 3 deletions

View File

@ -29,6 +29,22 @@ pdfioObjClose(pdfio_obj_t *obj) // I - Object
}
//
// 'pdfioObjCopy()' - Copy an object to another PDF file.
//
pdfio_obj_t * // O - New object or `NULL` on error
pdfioObjCopy(pdfio_file_t *pdf, // I - PDF file
pdfio_obj_t *srcobj) // I - Object to copy
{
// TODO: Implement pdfioObjCopy
(void)pdf;
(void)srcobj;
return (NULL);
}
//
// 'pdfioObjCreateStream()' - Create an object (data) stream for writing.
//