mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-18 12:06:47 +00:00
88bdf4601c
. Multi-zip archives are read-only. Added disk/harddisk eject sub-menu to Disk Config tab. Removed .bin registration. Added zlib & zip libs to project (VS 2008 Express).
58 lines
1.7 KiB
C
58 lines
1.7 KiB
C
#pragma once
|
|
|
|
#include "DiskImage.h"
|
|
|
|
enum Drive_e
|
|
{
|
|
DRIVE_1 = 0,
|
|
DRIVE_2,
|
|
NUM_DRIVES
|
|
};
|
|
|
|
const bool IMAGE_USE_FILES_WRITE_PROTECT_STATUS = false;
|
|
const bool IMAGE_FORCE_WRITE_PROTECTED = true;
|
|
const bool IMAGE_DONT_CREATE = false;
|
|
const bool IMAGE_CREATE = true;
|
|
|
|
extern BOOL enhancedisk;
|
|
extern string DiskPathFilename[NUM_DRIVES];
|
|
|
|
void DiskInitialize(void); // DiskIIManagerStartup()
|
|
void DiskDestroy(void); // no, doesn't "destroy" the disk image. DiskIIManagerShutdown()
|
|
|
|
void DiskBoot(void);
|
|
void DiskEject(const int iDrive);
|
|
|
|
LPCTSTR DiskGetFullName(const int iDrive);
|
|
LPCTSTR DiskGetFullDiskFilename(const int iDrive);
|
|
LPCTSTR DiskGetBaseName(const int iDrive);
|
|
|
|
enum Disk_Status_e
|
|
{
|
|
DISK_STATUS_OFF ,
|
|
DISK_STATUS_READ ,
|
|
DISK_STATUS_WRITE,
|
|
DISK_STATUS_PROT ,
|
|
NUM_DISK_STATUS
|
|
};
|
|
void DiskGetLightStatus (int *pDisk1Status_,int *pDisk2Status_);
|
|
|
|
ImageError_e DiskInsert(const int iDrive, LPCTSTR pszImageFilename, const bool bForceWriteProtected, const bool bCreateIfNecessary);
|
|
BOOL DiskIsSpinning(void);
|
|
void DiskNotifyInvalidImage(const int iDrive, LPCTSTR pszImageFilename, const ImageError_e Error);
|
|
void DiskReset(void);
|
|
bool DiskGetProtect(const int iDrive);
|
|
void DiskSetProtect(const int iDrive, const bool bWriteProtect);
|
|
void DiskSelect(const int iDrive);
|
|
void DiskUpdatePosition(DWORD);
|
|
bool DiskDriveSwap(void);
|
|
void DiskLoadRom(LPBYTE pCxRomPeripheral, UINT uSlot);
|
|
DWORD DiskGetSnapshot(SS_CARD_DISK2* pSS, DWORD dwSlot);
|
|
DWORD DiskSetSnapshot(SS_CARD_DISK2* pSS, DWORD dwSlot);
|
|
|
|
void Disk_LoadLastDiskImage(const int iDrive);
|
|
void Disk_SaveLastDiskImage(const int iDrive);
|
|
|
|
bool Disk_ImageIsWriteProtected(const int iDrive);
|
|
bool Disk_IsDriveEmpty(const int iDrive);
|