aboutsummaryrefslogtreecommitdiff
path: root/Source/Framestein.dpr
blob: ebb7a0adebe42448ede1b65acb72c6fbb5427051 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
program Framestein;

uses
  ActiveX,
  Forms,
  mainunit in 'mainunit.pas' {main},
  pshostunit in 'pshostunit.pas',
  effectsunit in 'effectsunit.pas',
  fsaviunit in 'fsaviunit.pas' {FsAvi},
  fsbrowserunit in 'fsbrowserunit.pas',
  fscopyunit in 'fscopyunit.pas' {fscopy},
  fsdrawunit in 'fsdrawunit.pas' {fsdraw},
  fsformunit in 'fsformunit.pas',
  fsframeunit in 'fsframeunit.pas' {fsframe},
  fsinfounit in 'fsinfounit.pas' {fsinfo},
  fstextunit in 'fstextunit.pas' {fstext},
  logunit in 'logunit.pas' {log},
  pluginunit in 'pluginunit.pas',
  progressunit in 'progressunit.pas' {Progress},
  configureunit in 'configureunit.pas' {configure},
  toolbarunit in 'toolbarunit.pas' {toolbar},
  fsmemounit in 'fsmemounit.pas' {fsmemo};

{$R *.RES}

begin
  Application.Initialize;
  Application.Title := 'Framestein';
  Application.CreateForm(Tmain, main);
  Application.CreateForm(TProgress, Progress);
  Application.CreateForm(Tconfigure, configure);
  Application.CreateForm(Tlog, log);
  Application.CreateForm(Ttoolbar, toolbar);
  Application.CreateForm(Tfsmemo, fsmemo);
  Application.Run;
end.