Update media scan GUI error times via events.

This commit is contained in:
2019-04-21 01:54:06 +01:00
parent a800ddb0ab
commit 5dd3903005
6 changed files with 26 additions and 4 deletions

View File

@@ -109,4 +109,10 @@ namespace DiscImageChef.Core
/// <param name="time">Time in milliseconds</param>
/// <param name="blocks">Number of blocks scanned</param>
public delegate void ScanTimeHandler(double time, uint blocks);
/// <summary>
/// Specified a number of blocks could not be read on scan
/// </summary>
/// <param name="blocks">Number of blocks scanned</param>
public delegate void ScanUnreadableHandler(uint blocks);
}