Index: trunk/src_plugins/export_ps/export_ps.h =================================================================== --- trunk/src_plugins/export_ps/export_ps.h (revision 632) +++ trunk/src_plugins/export_ps/export_ps.h (revision 633) @@ -1,6 +1,6 @@ /* required by lpr */ extern rnd_hid_t ps_hid; -extern void ps_hid_export_to_file(rnd_design_t *dsg, FILE *, rnd_hid_attr_val_t *, rnd_xform_t *); +extern void ps_hid_export_to_file(rnd_design_t *dsg, FILE *, rnd_hid_attr_val_t *, rnd_xform_t *, void *); void ps_ps_init(rnd_hid_t * hid); /* required for ps<->eps cross call */ Index: trunk/src_plugins/export_ps/ps.c =================================================================== --- trunk/src_plugins/export_ps/ps.c (revision 632) +++ trunk/src_plugins/export_ps/ps.c (revision 633) @@ -198,7 +198,7 @@ } /* This is used by other HIDs that use a postscript format, like lpr or eps. */ -void ps_hid_export_to_file(rnd_design_t *hl, FILE * the_file, rnd_hid_attr_val_t * options, rnd_xform_t *xform) +void ps_hid_export_to_file(rnd_design_t *hl, FILE * the_file, rnd_hid_attr_val_t * options, rnd_xform_t *xform, void *appspec) { double dtmp; int toc; @@ -272,7 +272,7 @@ } } - ps_hid_export_to_file(hl, fh, options, &xform); + ps_hid_export_to_file(hl, fh, options, &xform, appspec); global.multi_file = 0; if (fh) {