mirror of
https://github.com/AppleWin/AppleWin.git
synced 2026-03-11 23:42:24 +00:00
. Add PropSheetPage: Slots (and include 'Reset to Default') - include config options for some cards . Remove PropSheetPages: Sound & Disk . Config page: refactor and add 'Reset all to Default' . Input page: refactor . Advanced page: refactor
21 lines
695 B
C++
21 lines
695 B
C++
#pragma once
|
|
|
|
const bool kSaveStateOnExit_Default = false;
|
|
|
|
void Snapshot_SetFilename(const std::string& filename, const std::string& path="");
|
|
const std::string& Snapshot_GetFilename(void);
|
|
const std::string& Snapshot_GetPath(void);
|
|
const std::string& Snapshot_GetPathname(void);
|
|
void Snapshot_GetDefaultFilenameAndPath(std::string& defaultFilename, std::string& defaultPath);
|
|
void Snapshot_UpdatePath(void);
|
|
void Snapshot_LoadState();
|
|
void Snapshot_SaveState();
|
|
void Snapshot_Startup();
|
|
void Snapshot_Shutdown();
|
|
|
|
bool GetSaveStateOnExit();
|
|
void SetSaveStateOnExit(bool saveStateOnExit);
|
|
|
|
bool Snapshot_GetIgnoreHdcFirmware();
|
|
void Snapshot_SetIgnoreHdcFirmware(const bool ignoreHdcFirmware);
|