Subversion Repositories spacemission

Rev

Rev 31 | Rev 80 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 31 Rev 63
Line 13... Line 13...
13
  LevSplash in 'LevSplash.pas' {SplashForm},
13
  LevSplash in 'LevSplash.pas' {SplashForm},
14
  LevSpeicherung in 'LevSpeicherung.pas' {SpeicherungForm},
14
  LevSpeicherung in 'LevSpeicherung.pas' {SpeicherungForm},
15
  ComInfo in 'ComInfo.pas' {InfoForm},
15
  ComInfo in 'ComInfo.pas' {InfoForm},
16
  LevOptions in 'LevOptions.pas' {LevelForm},
16
  LevOptions in 'LevOptions.pas' {LevelForm},
17
  ComLevelReader in 'ComLevelReader.pas',
17
  ComLevelReader in 'ComLevelReader.pas',
18
  Global in 'Global.pas';
18
  Global in 'Global.pas',
-
 
19
  ComHilfe in 'ComHilfe.pas' {HilfeForm};
19
 
20
 
20
{$R *.RES}
21
{$R *.RES}
21
 
22
 
22
var
23
var
23
  Sem: THandle;
24
  Sem: THandle;
Line 45... Line 46...
45
  end;
46
  end;
46
  Application.CreateForm(TMainForm, MainForm);
47
  Application.CreateForm(TMainForm, MainForm);
47
  Application.CreateForm(TSpeicherungForm, SpeicherungForm);
48
  Application.CreateForm(TSpeicherungForm, SpeicherungForm);
48
  Application.CreateForm(TInfoForm, InfoForm);
49
  Application.CreateForm(TInfoForm, InfoForm);
49
  Application.CreateForm(TLevelForm, LevelForm);
50
  Application.CreateForm(TLevelForm, LevelForm);
-
 
51
  Application.CreateForm(THilfeForm, HilfeForm);
50
  Application.Run;
52
  Application.Run;
51
end.
53
end.
52
 
54