mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2024-12-26 13:28:22 +01:00
PR comment
This commit is contained in:
parent
121b933307
commit
ee31096019
@ -268,26 +268,6 @@ pdfioObjGetDict(pdfio_obj_t *obj) // I - Object
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//
|
|
||||||
// 'pdfioObjGetName()' - Get the name value associated with an object.
|
|
||||||
//
|
|
||||||
|
|
||||||
const char * // O - Dictionary or `NULL` on error
|
|
||||||
pdfioObjGetName(pdfio_obj_t *obj) // I - Object
|
|
||||||
{
|
|
||||||
if (!obj)
|
|
||||||
return (NULL);
|
|
||||||
|
|
||||||
if (obj->value.type == PDFIO_VALTYPE_NONE)
|
|
||||||
_pdfioObjLoad(obj);
|
|
||||||
|
|
||||||
if (obj->value.type == PDFIO_VALTYPE_NAME)
|
|
||||||
return (obj->value.value.name);
|
|
||||||
else
|
|
||||||
return (NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// '_pdfioObjGetExtension()' - Get the extension pointer for an object.
|
// '_pdfioObjGetExtension()' - Get the extension pointer for an object.
|
||||||
//
|
//
|
||||||
@ -353,6 +333,26 @@ pdfioObjGetLength(pdfio_obj_t *obj) // I - Object
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//
|
||||||
|
// 'pdfioObjGetName()' - Get the name value associated with an object.
|
||||||
|
//
|
||||||
|
|
||||||
|
const char * // O - Dictionary or `NULL` on error
|
||||||
|
pdfioObjGetName(pdfio_obj_t *obj) // I - Object
|
||||||
|
{
|
||||||
|
if (!obj)
|
||||||
|
return (NULL);
|
||||||
|
|
||||||
|
if (obj->value.type == PDFIO_VALTYPE_NONE)
|
||||||
|
_pdfioObjLoad(obj);
|
||||||
|
|
||||||
|
if (obj->value.type == PDFIO_VALTYPE_NAME)
|
||||||
|
return (obj->value.value.name);
|
||||||
|
else
|
||||||
|
return (NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// 'pdfioObjGetNumber()' - Get the object's number.
|
// 'pdfioObjGetNumber()' - Get the object's number.
|
||||||
//
|
//
|
||||||
|
Loading…
Reference in New Issue
Block a user