mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
* DiscImageChef.Devices/Enums.cs:
* DiscImageChef.Devices/Command.cs: * DiscImageChef.Devices/Device/Commands.cs: * DiscImageChef.Devices/Device/Variables.cs: * DiscImageChef.Devices/Device/Destructor.cs: * DiscImageChef.Devices/Device/Constructor.cs: * DiscImageChef.Devices/DiscImageChef.Devices.csproj: Added device class. * DiscImageChef.Devices/Device/ScsiCommands.cs: Added device class. Added SCSI INQUIRY.
This commit is contained in:
@@ -2346,6 +2346,31 @@ namespace DiscImageChef.Devices
|
||||
VariableSizedCDB = 0x7F
|
||||
}
|
||||
#endregion SCSI Commands
|
||||
|
||||
public enum ScsiDirection
|
||||
{
|
||||
/// <summary>
|
||||
/// No data transfer happens
|
||||
/// </summary>
|
||||
None,
|
||||
/// <summary>
|
||||
/// From host to device
|
||||
/// </summary>
|
||||
Out,
|
||||
/// <summary>
|
||||
/// From device to host
|
||||
/// </summary>
|
||||
In,
|
||||
/// <summary>
|
||||
/// Bidirectional device/host
|
||||
/// </summary>
|
||||
Bidirectional,
|
||||
/// <summary>
|
||||
/// Unspecified
|
||||
/// </summary>
|
||||
Unspecified
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user