Subversion Repositories delphiutils

Rev

Rev 68 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
68 daniel-mar 1
program UserDetect2;
2
 
3
uses
4
  Forms,
5
  UD2_Main in 'UD2_Main.pas' {UD2MainForm},
6
  UD2_TaskProperties in 'UD2_TaskProperties.pas' {UD2TaskPropertiesForm},
7
  UD2_PluginIntf in 'UD2_PluginIntf.pas',
8
  UD2_PluginUtils in 'UD2_PluginUtils.pas',
9
  UD2_Obj in 'UD2_Obj.pas',
10
  UD2_Utils in 'UD2_Utils.pas',
11
  VTSCompat in 'vcl\VTSCompat.pas',
69 daniel-mar 12
  AlphaNumSort in 'vcl\AlphaNumSort.pas',
68 daniel-mar 13
  PatchU in 'vcl\PatchU.pas';
14
 
15
{$R WindowsXP.res}
16
 
17
{$R *.res}
18
 
19
begin
20
  Application.Initialize;
21
  Application.CreateForm(TUD2MainForm, UD2MainForm);
22
  Application.Run;
23
end.