mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Add packets to get USB, FireWire and PCMCIA data.
This commit is contained in:
@@ -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...");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user