mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-10 08:06:46 +00:00
37ad1ebd63
Also: . support new CpuType independently of Apple2Type . save-state: don't save disk track image if no disk . save-state: re-init AppleWin internals & UI to reflect changed Apple2Type
21 lines
739 B
C++
21 lines
739 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();
|
|
|
|
std::string Printer_GetSnapshotCardName(void);
|
|
void Printer_SaveSnapshot(class YamlSaveHelper& yamlSaveHelper);
|
|
bool Printer_LoadSnapshot(class YamlLoadHelper& yamlLoadHelper, UINT slot, UINT version);
|
|
|
|
extern bool g_bDumpToPrinter;
|
|
extern bool g_bConvertEncoding;
|
|
extern bool g_bFilterUnprintable;
|
|
extern bool g_bPrinterAppend;
|
|
extern bool g_bEnableDumpToRealPrinter; // Set by cmd-line: -printer-real
|