diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-10-11 10:42:05 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-10-11 10:42:05 +0200 |
commit | 358811630686460d6b0a96021a1bcb4c3124fb03 (patch) | |
tree | 08a0049753ead2cd063723fddd0dd241740769df /include/fitz/object.h | |
parent | bd77c6880a7cf32e20865fb0cdb6816df0e6f775 (diff) | |
download | mupdf-358811630686460d6b0a96021a1bcb4c3124fb03.tar.xz |
cleaned up xref object and stream api
Diffstat (limited to 'include/fitz/object.h')
-rw-r--r-- | include/fitz/object.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/fitz/object.h b/include/fitz/object.h index 2a9ab15f..c564b70b 100644 --- a/include/fitz/object.h +++ b/include/fitz/object.h @@ -92,8 +92,8 @@ float fz_toreal(fz_obj *obj); char *fz_toname(fz_obj *obj); char *fz_tostringbuf(fz_obj *obj); int fz_tostringlen(fz_obj *obj); -int fz_toobjid(fz_obj *obj); -int fz_togenid(fz_obj *obj); +int fz_tonum(fz_obj *obj); +int fz_togen(fz_obj *obj); void *fz_topointer(fz_obj *obj); int fz_arraylen(fz_obj *array); |