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

@@ -5,6 +5,7 @@ using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Runtime.InteropServices;
using DiscImageChef.CommonTypes.Enums;
using DiscImageChef.CommonTypes.Interop;
using DiscImageChef.Console;
using DiscImageChef.Decoders.ATA;
@@ -367,5 +368,10 @@ namespace DiscImageChef.Devices.Remote
{
throw new NotImplementedException("Remote SDHCI commands not yet implemented...");
}
public DeviceType GetDeviceType()
{
throw new NotImplementedException("Getting remote device type not yet implemented...");
}
}
}