Add packets to get USB, FireWire and PCMCIA data.

This commit is contained in:
2019-10-14 01:27:05 +01:00
parent ef92d42641
commit 0e653cec10
3 changed files with 91 additions and 6 deletions

View File

@@ -378,5 +378,22 @@ namespace DiscImageChef.Devices.Remote
{
throw new NotImplementedException("Getting SDHCI registers not yet implemented...");
}
public bool GetUsbData(out byte[] descriptors, out ushort idVendor, out ushort idProduct,
out string manufacturer, out string product, out string serial)
{
throw new NotImplementedException("Getting USB data not yet implemented...");
}
public bool GetFirewireData(out uint idVendor, out uint idProduct,
out ulong guid, out string vendor, out string model)
{
throw new NotImplementedException("Getting FireWire data not yet implemented...");
}
public bool GetPcmciaData(out byte[] cis)
{
throw new NotImplementedException("Getting PCMCIA data not yet implemented...");
}
}
}