diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-11-11 07:52:33 +0100 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-11-11 07:52:33 +0100 |
commit | 1be84ed1d4fbe44387222995a124a4f84ee55210 (patch) | |
tree | 4748ea9933e543fbde652857444b416cc16361d0 /include/fitz/object.h | |
parent | 58de1fff510078e3d2d8cfce033c87299adf78f0 (diff) | |
download | mupdf-1be84ed1d4fbe44387222995a124a4f84ee55210.tar.xz |
fitz tree resource reference counting
Diffstat (limited to 'include/fitz/object.h')
-rw-r--r-- | include/fitz/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fitz/object.h b/include/fitz/object.h index d24b8a7a..014dc33d 100644 --- a/include/fitz/object.h +++ b/include/fitz/object.h @@ -71,7 +71,7 @@ fz_error *fz_deepcopyarray(fz_obj **op, fz_obj *array); fz_error *fz_deepcopydict(fz_obj **op, fz_obj *dict); fz_obj *fz_keepobj(fz_obj *obj); -fz_obj *fz_dropobj(fz_obj *obj); +void fz_dropobj(fz_obj *obj); /* type queries */ int fz_isnull(fz_obj *obj); |