CUERipper update;

CTDB xml interface;
Minor bugfixes;
Version 2.0.6-2.0.7
This commit is contained in:
chudov
2010-03-20 07:09:07 +00:00
parent ff3259e08a
commit f01d0b5241
74 changed files with 4203 additions and 1392 deletions

View File

@@ -11,6 +11,8 @@ namespace CUETools.Ripper
public interface ICDRipper : IAudioSource, IDisposable
{
bool Open(char Drive);
bool DetectGaps();
bool GapsDetected { get; }
CDImageLayout TOC { get; }
string ARName { get; }
string EACName { get; }
@@ -37,12 +39,17 @@ namespace CUETools.Ripper
public sealed class ReadProgressArgs : EventArgs
{
public string Action;
public int Position;
public int Pass;
public int PassStart, PassEnd;
public int ErrorsCount;
public DateTime PassTime;
public ReadProgressArgs()
{
}
public ReadProgressArgs(int position, int pass, int passStart, int passEnd, int errorsCount, DateTime passTime)
{
Position = position;