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

« back to all changes in this revision

Viewing changes to src/gdevcif.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: gdevcif.c 8022 2007-06-05 22:23:38Z giles $*/
 
13
/* $Id: gdevcif.c 8250 2007-09-25 13:31:24Z giles $*/
14
14
/*
15
15
  CIF output driver
16
16
 
30
30
#endif
31
31
 
32
32
/* The device descriptor */
33
 
private dev_proc_print_page(cif_print_page);
 
33
static dev_proc_print_page(cif_print_page);
34
34
const gx_device_printer far_data gs_cif_device =
35
35
  prn_device(prn_std_procs, "cif",
36
36
        DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS,
39
39
        1, cif_print_page);
40
40
 
41
41
/* Send the page to the output. */
42
 
private int
 
42
static int
43
43
cif_print_page(gx_device_printer *pdev, FILE *prn_stream)
44
44
{       int line_size = gdev_mem_bytes_per_scan_line((gx_device *)pdev);
45
45
        int lnum;