Add packet for get device type.

This commit is contained in:
2019-10-14 01:02:25 +01:00
parent 1dd75018e3
commit 3df019304f
4 changed files with 30 additions and 8 deletions

View File

@@ -1,4 +1,5 @@
using System.Runtime.InteropServices;
using DiscImageChef.CommonTypes.Enums;
using DiscImageChef.Decoders.ATA;
namespace DiscImageChef.Devices.Remote
@@ -201,4 +202,17 @@ namespace DiscImageChef.Devices.Remote
public uint sense;
public uint errno;
}
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
public struct DicPacketCmdGetDeviceType
{
private readonly DicPacketHeader hdr;
}
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
public struct DicPacketResGetDeviceType
{
private readonly DicPacketHeader hdr;
private readonly DeviceType device_type;
}
}