mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix visibility of MediaScan class members.
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user