diff --git a/DiscImageChef.Devices/ChangeLog b/DiscImageChef.Devices/ChangeLog index 77104a9b8..a558984a4 100644 --- a/DiscImageChef.Devices/ChangeLog +++ b/DiscImageChef.Devices/ChangeLog @@ -1,3 +1,8 @@ +2015-11-23 Natalia Portillo + + * Device/ScsiCommands.cs: + Added missing documentation. + 2015-11-23 Natalia Portillo * Device/ScsiCommands.cs: diff --git a/DiscImageChef.Devices/Device/ScsiCommands.cs b/DiscImageChef.Devices/Device/ScsiCommands.cs index 7482b04d7..126fdf35f 100644 --- a/DiscImageChef.Devices/Device/ScsiCommands.cs +++ b/DiscImageChef.Devices/Device/ScsiCommands.cs @@ -460,6 +460,7 @@ namespace DiscImageChef.Devices /// true if the command failed and contains the sense buffer. /// Buffer where the SCSI GET CONFIGURATION response will be stored /// Sense buffer. + /// Feature number where the feature list should start from /// Timeout in seconds. /// Duration in milliseconds it took for the device to execute the command. public bool GetConfiguration(out byte[] buffer, out byte[] senseBuffer, ushort startingFeatureNumber, uint timeout, out double duration) @@ -512,6 +513,19 @@ namespace DiscImageChef.Devices return sense; } + /// + /// Sends the SCSI READ DISC STRUCTURE command + /// + /// true if the command failed and contains the sense buffer. + /// Buffer where the SCSI READ DISC STRUCTURE response will be stored + /// Sense buffer. + /// Medium type for requested disc structure + /// Medium address for requested disc structure + /// Medium layer for requested disc structure + /// Timeout in seconds. + /// Which disc structure are we requesting + /// AGID used in medium copy protection + /// Duration in milliseconds it took for the device to execute the command. public bool ReadDiscStructure(out byte[] buffer, out byte[] senseBuffer, MmcDiscStructureMediaType mediaType, uint address, byte layerNumber, MmcDiscStructureFormat format, byte AGID, uint timeout, out double duration) { senseBuffer = new byte[32];