amex/sram.c: Handle ABI version ioctl

This commit is contained in:
Felix Anderson 2021-09-01 22:52:40 +00:00
parent 0b9f81fb2a
commit bbb7cdf4a5
Signed by untrusted user: felix
GPG Key ID: 69ADF8AEB6C8B5D1
1 changed files with 13 additions and 0 deletions

View File

@ -20,12 +20,17 @@
#include "util/dprintf.h"
#include "util/str.h"
enum {
SRAM_IOCTL_GET_ABI_VERSION = 0x80006000,
};
static HRESULT sram_handle_irp(struct irp *irp);
static HRESULT sram_handle_open(struct irp *irp);
static HRESULT sram_handle_close(struct irp *irp);
static HRESULT sram_handle_ioctl(struct irp *irp);
static HRESULT sram_ioctl_get_geometry(struct irp *irp);
static HRESULT sram_ioctl_get_abi_version(struct irp *irp);
static struct sram_config sram_config;
static HANDLE sram_file;
@ -113,6 +118,9 @@ static HRESULT sram_handle_ioctl(struct irp *irp)
case IOCTL_DISK_GET_DRIVE_GEOMETRY:
return sram_ioctl_get_geometry(irp);
case SRAM_IOCTL_GET_ABI_VERSION:
return sram_ioctl_get_abi_version(irp);
default:
dprintf("SRAM: Unknown ioctl %x, write %i read %i\n",
irp->ioctl,
@ -145,3 +153,8 @@ static HRESULT sram_ioctl_get_geometry(struct irp *irp)
return hr;
}
static HRESULT sram_ioctl_get_abi_version(struct irp *irp)
{
return iobuf_write_le16(&irp->read, 256);
}