]> rtime.felk.cvut.cz Git - can-usb1.git/blob - ulan/host/apps/uloi_browser/autodetection.pas
Initializing repo
[can-usb1.git] / ulan / host / apps / uloi_browser / autodetection.pas
1 unit autodetection;\r
2 \r
3 {$mode objfpc}{$H+}\r
4 \r
5 interface\r
6 \r
7 uses\r
8   Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, StdCtrls,\r
9   ComCtrls;\r
10 \r
11 type\r
12 \r
13   { Tfautodetection }\r
14 \r
15   Tfautodetection = class(TForm)\r
16     Label1: TLabel;\r
17     ProgressBar1: TProgressBar;\r
18   private\r
19     { private declarations }\r
20   public\r
21     { public declarations }\r
22   end; \r
23 \r
24 var\r
25   fautodetection: Tfautodetection;\r
26 \r
27 implementation\r
28 \r
29 initialization\r
30   {$I autodetection.lrs}\r
31 \r
32 end.\r
33 \r