[gs-cvs] rev 8699 - branches/mtrender/src
ray at ghostscript.com
ray at ghostscript.com
Sun May 4 12:59:11 PDT 2008
Author: ray
Date: 2008-05-04 12:59:11 -0700 (Sun, 04 May 2008)
New Revision: 8699
Modified:
branches/mtrender/src/gxclist.h
Log:
Fix decalarations missed in the merge of 8659.
Modified: branches/mtrender/src/gxclist.h
===================================================================
--- branches/mtrender/src/gxclist.h 2008-05-04 17:50:39 UTC (rev 8698)
+++ branches/mtrender/src/gxclist.h 2008-05-04 19:59:11 UTC (rev 8699)
@@ -385,9 +385,6 @@
/* Do device setup from params passed in the command list. */
int clist_setup_params(gx_device *dev);
-/* Initialize for reading. */
-int clist_render_init(gx_device_clist *dev);
-
/*
* Render a rectangle to a client-supplied image. This implements
* gdev_prn_render_rectangle for devices that are using banding.
@@ -421,8 +418,18 @@
void
clist_copy_band_complexity(gx_band_complexity_t *this, const gx_band_complexity_t *from);
+/* Retrieve total size for cfile and bfile. */
+int clist_data_size(const gx_device_clist *cdev, int select);
+/* Get command list data. */
+int clist_get_data(const gx_device_clist *cdev, int select, int offset, byte *buf, int length);
+/* Put command list data. */
+int clist_put_data(const gx_device_clist *cdev, int select, int offset, const byte *buf, int length);
+
/* Exports from gxclread used by the multi-threading logic */
+/* Initialize for reading. */
+int clist_render_init(gx_device_clist *dev);
+
int
clist_close_writer_and_init_reader(gx_device_clist *cldev);
More information about the gs-cvs
mailing list