~ubuntu-branches/ubuntu/hardy/ghostscript/hardy

« back to all changes in this revision

Viewing changes to src/gdevcljc.c

  • Committer: Bazaar Package Importer
  • Author(s): Till Kamppeter
  • Date: 2007-11-22 12:17:43 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20071122121743-cd70s3ypq0r243mp
Tags: 8.61.dfsg.1-0ubtuntu1
* New upstream release
  o Final 8.61 release
* debian/patches/09_ijs_krgb_support.dpatch: Adapted to upstream changes.
* debian/rules: Updated CUPS-related variables for "make install" calls.
* debian/rules: Remove /usr/include/ghostscript from the ghostscript
  package, they go into lings-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
   or contact Artifex Software, Inc.,  7 Mt. Lassen Drive - Suite A-134,
11
11
   San Rafael, CA  94903, U.S.A., +1(415)492-9861, for further information.
12
12
*/
13
 
/* $Id: gdevcljc.c 8022 2007-06-05 22:23:38Z giles $ */
 
13
/* $Id: gdevcljc.c 8250 2007-09-25 13:31:24Z giles $ */
14
14
/*
15
15
 * H-P Color LaserJet 5/5M contone device; based on the gdevclj.c.
16
16
 */
26
26
 * render mode as well as color parameters - bpp etc. are all
27
27
 * hardwired.
28
28
 */
29
 
private int
 
29
static int
30
30
cljc_print_page(gx_device_printer * pdev, FILE * prn_stream)
31
31
{
32
32
    gs_memory_t *mem = pdev->memory;
81
81
}
82
82
 
83
83
/* CLJ device methods */
84
 
private gx_device_procs cljc_procs =
 
84
static gx_device_procs cljc_procs =
85
85
prn_color_procs(gdev_prn_open, gdev_prn_output_page, gdev_prn_close,
86
86
                gx_default_rgb_map_rgb_color, gx_default_rgb_map_color_rgb);
87
87