Save work on streams.

This commit is contained in:
Michael R Sweet
2021-05-06 16:07:58 -04:00
parent d2a0484d93
commit c61d6ad686
4 changed files with 120 additions and 3 deletions

View File

@ -197,10 +197,12 @@ _pdfioObjLoad(pdfio_obj_t *obj) // I - Object
//
pdfio_stream_t * // O - Stream or `NULL` on error
pdfioObjOpenStream(pdfio_obj_t *obj) // I - Object
pdfioObjOpenStream(pdfio_obj_t *obj, // I - Object
bool decode) // I - Decode/decompress data?
{
// TODO: Implement me
(void)obj;
(void)decode;
return (NULL);
}