aboutsummaryrefslogblamecommitdiffstats
path: root/apps/windoze/Delphi20/swordvc/swordvc.dpr
blob: 38f660f7cbacc683d02bd254741c00742b135364 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                        
program SwordVC;

uses
  Forms,
  Unit1 in 'Unit1.pas' {Form1},
  swmodule in 'swmodule.pas',
  swvskey in 'swvskey.pas',
  swkey in 'SWKey.pas',
  listkey in 'listkey.pas',
  swtxtdsp in 'swtxtdsp.pas';

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.