--- hatari/src/includes/printer.h 2019/04/01 07:09:16 1.1.1.1 +++ hatari/src/includes/printer.h 2019/04/01 07:14:47 1.1.1.5 @@ -1,16 +1,12 @@ /* - Hatari + Hatari - printer.h + + function prototypes for pritner.c / Printing interface */ extern void Printer_Init(void); extern void Printer_UnInit(void); extern void Printer_CloseAllConnections(void); -extern void Printer_CloseDiscFile(void); -extern void Printer_CloseWindowsPrinter(void); -extern void Printer_ResetInternalBuffer(void); -extern void Printer_ResetCharsOnLine(void); -extern BOOL Printer_EmptyInternalBuffer(void); -extern void Printer_AddByteToInternalBuffer(unsigned char Byte); -extern BOOL Printer_TransferByteTo(unsigned char Byte); +extern bool Printer_TransferByteTo(Uint8 Byte); extern void Printer_CheckIdleStatus(void);