mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Move SCSI device reporting to non-static class and its UI to CLI.
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -46,7 +46,7 @@ namespace DiscImageChef.Core.Devices.Report.SCSI
|
||||
/// <summary>
|
||||
/// Implements creating a report for a SCSI MultiMedia device
|
||||
/// </summary>
|
||||
static class Mmc
|
||||
public static class Mmc
|
||||
{
|
||||
/// <summary>
|
||||
/// Fills a SCSI device report with parameters and media tests specific to a MultiMedia device
|
||||
@@ -55,8 +55,8 @@ namespace DiscImageChef.Core.Devices.Report.SCSI
|
||||
/// <param name="report">Device report</param>
|
||||
/// <param name="debug">If debug is enabled</param>
|
||||
/// <param name="cdromMode">Decoded MODE PAGE 2Ah</param>
|
||||
internal static void Report(Device dev, ref DeviceReportV2 report, bool debug, ref Modes.ModePage_2A? cdromMode,
|
||||
string productIdentification)
|
||||
public static void Report(Device dev, ref DeviceReportV2 report, bool debug, Modes.ModePage_2A? cdromMode,
|
||||
string productIdentification)
|
||||
{
|
||||
if(report == null) return;
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@ namespace DiscImageChef.Core.Devices.Report.SCSI
|
||||
/// <summary>
|
||||
/// Implements creating a report for a SCSI Streaming device
|
||||
/// </summary>
|
||||
static class Ssc
|
||||
public static class Ssc
|
||||
{
|
||||
/// <summary>
|
||||
/// Fills a SCSI device report with parameters and media tests specific to a Streaming device
|
||||
@@ -52,7 +52,7 @@ namespace DiscImageChef.Core.Devices.Report.SCSI
|
||||
/// <param name="dev">Device</param>
|
||||
/// <param name="report">Device report</param>
|
||||
/// <param name="debug">If debug is enabled</param>
|
||||
internal static void Report(Device dev, ref DeviceReportV2 report, bool debug)
|
||||
public static void Report(Device dev, ref DeviceReportV2 report, bool debug)
|
||||
{
|
||||
if(report == null) return;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user