More LPT device sanitization, un-dev-branch the Generic PCL printer, add language selection to it and the PostScript printer (including a Raw option), and translate the missing strings.

This commit is contained in:
OBattler
2026-01-27 09:40:53 +01:00
parent 9b7b92622b
commit 51e0e88329
38 changed files with 365 additions and 202 deletions

View File

@@ -132,8 +132,7 @@ extern void lpt_port_remove(lpt_t *dev);
extern void lpt1_remove_ams(lpt_t *dev);
extern void lpt_devices_init(void);
extern void * lpt_attach(int port,
void (*write_data)(uint8_t val, void *priv),
extern void * lpt_attach(void (*write_data)(uint8_t val, void *priv),
void (*write_ctrl)(uint8_t val, void *priv),
void (*strobe)(uint8_t old, uint8_t val,void *priv),
uint8_t (*read_status)(void *priv),

View File

@@ -4,8 +4,6 @@
extern const device_t lpt_prt_text_device;
extern const device_t lpt_prt_escp_device;
extern const device_t lpt_prt_ps_device;
#ifdef USE_PCL
extern const device_t lpt_prt_pcl_device;
#endif
#endif /*EMU_PRT_DEVS_H*/