mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-12-24 07:30:24 +00:00
717c5cba84
. Format now extensible for supporting new hardware types in the future . Include missing items like Apple2Type, CyclesThisVideoFrame (#255) Continue to support loading of old v1 format. Added card save/load for: . Mouse (#260) . HDD (#260) . Printer Extended card support for: . SSC Other: . Added save-state v1 struct size checks . Create SaveState_Structs_v2.h and split out common into SaveState_Structs_common.h . Refactor HardDisk.cpp to use imagehandle; and consolidate with Disk.cpp . Fix Disk/HD_GetFullPathName() which wasn't always returning full pathname . Consolidate common GetImageTitle() and move into DiskImage.cpp
20 lines
628 B
C
20 lines
628 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();
|
|
|
|
void Printer_GetSnapshot(const HANDLE hFile);
|
|
void Printer_SetSnapshot(const HANDLE hFile);
|
|
|
|
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
|