Last change
on this file since 24 was 1, checked in by chronos, 9 years ago |
- Initial development version.
- Added: Can scan files and disk for damaged sectors.
- Added: Show map of drive in blocks. Also show scan progress as runtime statistics.
|
File size:
425 bytes
|
Line | |
---|
1 | unit UFormBenchmark;
|
---|
2 |
|
---|
3 | {$mode delphi}
|
---|
4 |
|
---|
5 | interface
|
---|
6 |
|
---|
7 | uses
|
---|
8 | Classes, SysUtils, FileUtil, TAGraph, Forms, Controls, Graphics, Dialogs;
|
---|
9 |
|
---|
10 | type
|
---|
11 |
|
---|
12 | { TFormBenchmark }
|
---|
13 |
|
---|
14 | TFormBenchmark = class(TForm)
|
---|
15 | Chart1: TChart;
|
---|
16 | private
|
---|
17 | { private declarations }
|
---|
18 | public
|
---|
19 | procedure Start;
|
---|
20 | end;
|
---|
21 |
|
---|
22 | var
|
---|
23 | FormBenchmark: TFormBenchmark;
|
---|
24 |
|
---|
25 | implementation
|
---|
26 |
|
---|
27 | {$R *.lfm}
|
---|
28 |
|
---|
29 | { TFormBenchmark }
|
---|
30 |
|
---|
31 | procedure TFormBenchmark.Start;
|
---|
32 | begin
|
---|
33 |
|
---|
34 | end;
|
---|
35 |
|
---|
36 | end.
|
---|
37 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.