Implemented SCSI READ DISC INFORMATION.

This commit is contained in:
2015-11-23 17:10:59 +00:00
parent eb98bf28b6
commit d0a35ff00e
3 changed files with 275 additions and 1 deletions

View File

@@ -3018,5 +3018,21 @@ namespace DiscImageChef.Devices
/// </summary>
WriteLong16 = ReadLong16
}
public enum MmcDiscInformationDataTypes : byte
{
/// <summary>
/// Standard Disc Information
/// </summary>
DiscInformation = 0x00,
/// <summary>
/// Track Resources Information
/// </summary>
TrackResources = 0x01,
/// <summary>
/// POW Resources Information
/// </summary>
POWResources = 0x02
}
}