mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-04 15:05:28 +00:00
b619d8a146
Fix cmd-line -d1/d2 switches with relative path (Bug #16632) Fix speaker volume when booting with -d1 switch Fix debugger bugs: - Crash when doing: help * - Crash when doing: run script.txt (Bug #16651) Fix "Harddisk images aren't persisted when in different folders" (Bug #16652)
20 lines
506 B
C
20 lines
506 B
C
#pragma once
|
|
|
|
enum HardDrive_e
|
|
{
|
|
HARDDISK_1 = 0,
|
|
HARDDISK_2,
|
|
NUM_HARDDISKS
|
|
};
|
|
|
|
bool HD_CardIsEnabled(void);
|
|
void HD_SetEnabled(const bool bEnabled);
|
|
LPCTSTR HD_GetFullName(const int iDrive);
|
|
LPCTSTR HD_GetFullPathName(const int iDrive);
|
|
VOID HD_Load_Rom(const LPBYTE pCxRomPeripheral, const UINT uSlot);
|
|
VOID HD_Cleanup(void);
|
|
BOOL HD_InsertDisk(const int iDrive, LPCTSTR pszImageFilename);
|
|
void HD_Select(const int iDrive);
|
|
void HD_Unplug(const int iDrive);
|
|
bool HD_IsDriveUnplugged(const int iDrive);
|