summaryrefslogtreecommitdiff
path: root/gs/src/ialloc.h
diff options
context:
space:
mode:
authorHenry Stiles <henry.stiles@artifex.com>1999-05-24 20:03:13 +0000
committerHenry Stiles <henry.stiles@artifex.com>1999-05-24 20:03:13 +0000
commit5e99d00db40250c4aec92e2e7ecaf51f629540ae (patch)
treec59a16131c363a845609bb0786adc205d3f6fddc /gs/src/ialloc.h
parent7ddfba499458819bf0dbf297b084f8b5b51b8690 (diff)
initial gs5.84 checkin with pcl and xl compiling.
git-svn-id: http://svn.ghostscript.com/ghostpcl/trunk/ghostpcl@857 06663e23-700e-0410-b217-a244a6096597
Diffstat (limited to 'gs/src/ialloc.h')
-rw-r--r--gs/src/ialloc.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/gs/src/ialloc.h b/gs/src/ialloc.h
index 02b743b5c..a42e8da36 100644
--- a/gs/src/ialloc.h
+++ b/gs/src/ialloc.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1989, 1995 Aladdin Enterprises. All rights reserved.
+/* Copyright (C) 1989, 1995, 1999 Aladdin Enterprises. All rights reserved.
This file is part of Aladdin Ghostscript.
@@ -52,17 +52,19 @@ extern gs_dual_memory_t gs_imemory;
gs_alloc_struct_array(imemory, nelts, typ, pstype, cname)
#define ifree_object(data, cname)\
gs_free_object(imemory, data, cname)
+#define ifree_const_object(data, cname)\
+ gs_free_const_object(imemory, data, cname)
#define ialloc_string(nbytes, cname)\
gs_alloc_string(imemory, nbytes, cname)
+#define iresize_string(data, oldn, newn, cname)\
+ gs_resize_string(imemory, data, oldn, newn, cname)
#define ifree_string(data, nbytes, cname)\
gs_free_string(imemory, data, nbytes, cname)
+#define ifree_const_string(data, nbytes, cname)\
+ gs_free_const_string(imemory, data, nbytes, cname)
/* Initialize the interpreter's allocator. */
-void ialloc_init(P3(gs_raw_memory_t *, uint, bool));
-
-/* Resize a string. */
-#define iresize_string(data, oldn, newn, cname)\
- gs_resize_string(imemory, data, oldn, newn, cname)
+void ialloc_init(P4(gs_dual_memory_t *, gs_raw_memory_t *, uint, bool));
/* ------ Internal routines ------ */