Subversion Repositories autosfx

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. program Extractor;
  2.  
  3. {
  4.   Warning: Extractor must be small, otherwise WinRAR
  5.   will not recognize the ZIP which is appended to this file.
  6.   So we MUST use UPX in PostBuild!
  7. }
  8.  
  9. uses
  10.   Forms,
  11.   ExtractorMain in 'ExtractorMain.pas' {MainForm},
  12.   ExtractorPassword in 'ExtractorPassword.pas' {PasswordDlg},
  13.   ExtractorError in 'ExtractorError.pas' {ErrorForm},
  14.   ExtractorComment in 'ExtractorComment.pas' {CommentForm},
  15.   Functions in 'Functions.pas',
  16.   SFXAutoRun in 'SFXAutoRun.pas',
  17.   SFXBehavior in 'SFXBehavior.pas';
  18.  
  19. {$R *.res}
  20.  
  21. begin
  22.   Application.Initialize;
  23.   Application.Title := 'ViaThinkSoft AutoSFX Extractor';
  24.   Application.CreateForm(TMainForm, MainForm);
  25.   Application.CreateForm(TPasswordDlg, PasswordDlg);
  26.   Application.CreateForm(TErrorForm, ErrorForm);
  27.   Application.CreateForm(TCommentForm, CommentForm);
  28.   Application.Run;
  29. end.
  30.