mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-05 06:06:24 +00:00
43455eb4fe
Whenever harddisks/disks are inserted (or removed) and *if path has changed* then: . Then the internal save-state's path & filename will be updated to reflect the new defaults. . LoadConfiguration(): Read the save-state pathname from Registry before harddisks/disks. Also: . CiderPress: only save pathname on OK. . Refactored CPropertySheetHelper::BrowseToFile(). . Extended support for -d1,-d2,-h1, etc such that if the param is "", then it will eject/unplug the disk/harddisk.
19 lines
459 B
C++
19 lines
459 B
C++
#pragma once
|
|
|
|
class Disk2CardManager
|
|
{
|
|
public:
|
|
Disk2CardManager(void) {}
|
|
~Disk2CardManager(void) {}
|
|
|
|
bool IsConditionForFullSpeed(void);
|
|
void UpdateDriveState(UINT cycles);
|
|
void Reset(const bool powerCycle = false);
|
|
bool GetEnhanceDisk(void);
|
|
void SetEnhanceDisk(bool enhanceDisk);
|
|
void LoadLastDiskImage(void);
|
|
void Destroy(void);
|
|
bool IsAnyFirmware13Sector(void);
|
|
void GetFilenameAndPathForSaveState(std::string& filename, std::string& path);
|
|
};
|