Fix visibility of MediaScan class members.

This commit is contained in:
2019-04-21 01:08:01 +01:00
parent 66108773d2
commit a71b2e6cb3
4 changed files with 4 additions and 4 deletions

View File

@@ -46,7 +46,7 @@ namespace DiscImageChef.Core.Devices.Scanning
/// Scans the media from an ATA device /// Scans the media from an ATA device
/// </summary> /// </summary>
/// <returns>Scanning results</returns> /// <returns>Scanning results</returns>
public ScanResults Ata() ScanResults Ata()
{ {
ScanResults results = new ScanResults(); ScanResults results = new ScanResults();
bool sense; bool sense;

View File

@@ -34,7 +34,7 @@ namespace DiscImageChef.Core.Devices.Scanning
{ {
public partial class MediaScan public partial class MediaScan
{ {
public ScanResults Nvme() ScanResults Nvme()
{ {
StoppingErrorMessage?.Invoke("NVMe devices not yet supported."); StoppingErrorMessage?.Invoke("NVMe devices not yet supported.");
return default; return default;

View File

@@ -47,7 +47,7 @@ namespace DiscImageChef.Core.Devices.Scanning
/// </summary> /// </summary>
public partial class MediaScan public partial class MediaScan
{ {
public ScanResults Scsi() ScanResults Scsi()
{ {
ScanResults results = new ScanResults(); ScanResults results = new ScanResults();
MhddLog mhddLog; MhddLog mhddLog;

View File

@@ -43,7 +43,7 @@ namespace DiscImageChef.Core.Devices.Scanning
/// </summary> /// </summary>
public partial class MediaScan public partial class MediaScan
{ {
public ScanResults SecureDigital() ScanResults SecureDigital()
{ {
ScanResults results = new ScanResults(); ScanResults results = new ScanResults();
byte[] cmdBuf; byte[] cmdBuf;