Files
Aaru/DiscImageChef.Core/Devices/Info/Plextor.cs

69 lines
2.5 KiB
C#
Raw Normal View History

2018-09-01 19:22:46 +01:00
// /***************************************************************************
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
// Filename : Plextor.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Core.
//
// --[ Description ] ----------------------------------------------------------
//
// Structures for Plextor features.
//
// --[ License ] --------------------------------------------------------------
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
2018-12-29 17:34:38 +00:00
// Copyright © 2011-2019 Natalia Portillo
2018-09-01 19:22:46 +01:00
// ****************************************************************************/
namespace DiscImageChef.Core.Devices.Info
{
public class Plextor
{
public byte AccessTimeLimit;
public bool BitSetting;
public bool BitSettingDl;
public byte CdReadSpeedLimit;
public uint CdReadTime;
public byte CdWriteSpeedLimit;
public uint CdWriteTime;
public ushort Discs;
public bool DvdPlusWriteTest;
public byte DvdReadSpeedLimit;
public uint DvdReadTime;
public uint DvdWriteTime;
public byte[] Eeprom;
public bool GigaRec;
public bool HidesRecordables;
public bool HidesSessions;
public bool Hiding;
public bool IsDvd;
public ushort PoweRecLast;
public ushort PoweRecMax;
public ushort PoweRecSelected;
public bool PoweRec;
public bool PoweRecEnabled;
public ushort PoweRecRecommendedSpeed;
public bool SecuRec;
public bool SilentMode;
public bool SilentModeEnabled;
public bool SpeedRead;
public bool SpeedReadEnabled;
public bool VariRec;
public bool VariRecDvd;
}
}