~ubuntu-branches/ubuntu/intrepid/plplot/intrepid

« back to all changes in this revision

Viewing changes to drivers/hpgl.c

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2006-11-04 10:19:34 UTC
  • mfrom: (2.1.8 edgy)
  • Revision ID: james.westby@ubuntu.com-20061104101934-mlirvdg4gpwi6i5q
Tags: 5.6.1-10
* Orphaning the package
* debian/control: Changed the maintainer to the Debian QA Group

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: hpgl.c,v 1.16 2004/01/19 19:10:19 airwin Exp $
 
1
/* $Id: hpgl.c,v 1.17 2006/05/18 11:56:39 rlaboiss Exp $
2
2
 *
3
3
 *  File:       hpgl.c
4
4
 *
38
38
 
39
39
/* Device info */
40
40
char* plD_DEVICE_INFO_hpgl =
 
41
#if defined(PLD_hp7470)
41
42
  "hp7470:HP 7470 Plotter File (HPGL Cartridge, Small Plotter):0:hpgl:34:hp7470\n"
 
43
#endif
 
44
#if defined(PLD_hp7580)
42
45
  "hp7580:HP 7580 Plotter File (Large Plotter):0:hpgl:35:hp7580\n"
43
 
  "lj_hpgl:HP Laserjet III, HPGL emulation mode:0:hpgl:36:lj_hpgl";
 
46
#endif
 
47
#if defined(PLD_lj_hpgl)        
 
48
  "lj_hpgl:HP Laserjet III, HPGL emulation mode:0:hpgl:36:lj_hpgl"
 
49
#endif
 
50
;
44
51
 
45
52
 
46
53
void plD_line_hpgl              (PLStream *, short, short, short, short);