home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 March / CMCD0304.ISO / Software / Freeware / Programare / nullsoft / nsis20.exe / Contrib / VPatch / Source / GUI / VPatchGUI.dpr < prev    next >
Encoding:
Text File  |  2003-08-12  |  454 b   |  20 lines

  1. program VPatchGUI;
  2.  
  3. uses
  4.   Forms,
  5.   MainForm in 'MainForm.pas' {frmMain},
  6.   PatchClasses in 'PatchClasses.pas',
  7.   VDSP_CRC in '..\GenPat\VDSP_CRC.pas',
  8.   DLLWrapper in 'DLLWrapper.pas',
  9.   AboutForm in 'AboutForm.pas' {frmAbout},
  10.   PatchGenerator in '..\GenPat\PatchGenerator.pas',
  11.   TreeCode in '..\GenPat\TreeCode.pas';
  12.  
  13. {$R *.res}
  14.  
  15. begin
  16.   Application.Initialize;
  17.   Application.CreateForm(TfrmMain, frmMain);
  18.   Application.Run;
  19. end.
  20.