--- gs-orig/src/gdevlbp8.c 2007-04-24 13:00:22.000000000 +0100 +++ gs-bjc880j-lips2p-lips4-lips4v/src/gdevlbp8.c 2006-11-29 11:53:38.000000000 +0000 @@ -43,7 +47,9 @@ /* The device descriptors */ private dev_proc_print_page(lbp8_print_page); +#if 0 private dev_proc_print_page(lips3_print_page); +#endif const gx_device_printer far_data gs_lbp8_device = prn_device(prn_std_procs, "lbp8", @@ -52,6 +58,7 @@ 0.16, 0.2, 0.32, 0.21, /* margins: left, bottom, right, top */ 1, lbp8_print_page); +#if 0 const gx_device_printer far_data gs_lips3_device = prn_device(prn_std_procs, "lips3", 82, /* width_10ths, 8.3" */ @@ -59,6 +66,7 @@ X_DPI, Y_DPI, 0.16, 0.27, 0.23, 0.27, /* margins */ 1, lips3_print_page); +#endif /* ------ Internal routines ------ */ @@ -78,6 +86,7 @@ static const char *lbp8_end = NULL; +#if 0 static const char lips3_init[] = { ESC, '<', /* soft reset */ DCS, '0', 'J', ST, /* JOB END */ @@ -94,6 +103,7 @@ static const char lips3_end[] = { DCS, '0', 'J', ST /* JOB END */ }; +#endif /* Send the page to the printer. */ private int @@ -199,9 +209,11 @@ lbp8_end, sizeof(lbp8_end)); } +#if 0 /* Print a LIPS III page. */ private int lips3_print_page(gx_device_printer *pdev, FILE *prn_stream) { return can_print_page(pdev, prn_stream, lips3_init, sizeof(lips3_init), lips3_end, sizeof(lips3_end)); } +#endif