mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-16 15:06:13 +00:00
20 lines
634 B
C
20 lines
634 B
C
#pragma once
|
|
|
|
void PrintDestroy();
|
|
void PrintLoadRom(LPBYTE pCxRomPeripheral, UINT uSlot);
|
|
void PrintReset();
|
|
void PrintUpdate(DWORD);
|
|
void Printer_SetFilename(char* pszFilename);
|
|
char* Printer_GetFilename();
|
|
void Printer_SetIdleLimit(unsigned int Duration);
|
|
unsigned int Printer_GetIdleLimit();
|
|
|
|
extern bool g_bDumpToPrinter;
|
|
extern bool g_bConvertEncoding;
|
|
extern bool g_bFilterUnprintable;
|
|
extern bool g_bPrinterAppend;
|
|
extern int g_iPrinterIdleLimit;
|
|
extern bool g_bFilterUnprintable;
|
|
extern bool g_bPrinterAppend;
|
|
extern bool g_bEnableDumpToRealPrinter; // Set by cmd-line: -printer-real
|