mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-04 15:05:28 +00:00
cf705a85a8
. Enables control in Advanced config to allow dumping to a real printer Resource file: . Bumped copyright year to 2009 . Set version to 1.16.0 Updated html help (toc, acknowledgements, cfg-advanced) Updated History.txt (changes/fixes for 1.16.0)
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
|