Update media scan GUI block times via events.

This commit is contained in:
2019-04-21 01:42:38 +01:00
parent d31bd8117f
commit a800ddb0ab
7 changed files with 32 additions and 8 deletions

View File

@@ -104,9 +104,9 @@ namespace DiscImageChef.Core
public delegate void ErrorMessageHandler(string text);
/// <summary>
/// Updates lists of time taken on scanning the specified number of blocks
/// Updates lists of time taken on scanning the specified number of blocks
/// </summary>
/// <param name="time">Time in milliseconds</param>
/// <param name="blocks">Number of blocks scanned</param>
public delegate void ScanTime(double time, uint blocks);
public delegate void ScanTimeHandler(double time, uint blocks);
}