NSIS/Contrib/VPatch/Source/GUI/VPatchGUI.dpr
joostverburg 5abd45c61e folder settings
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2800 212acab6-be3b-0410-9dea-997c60f758d6
2003-08-12 12:09:51 +00:00

19 lines
435 B
ObjectPascal

program VPatchGUI;
uses
Forms,
MainForm in 'MainForm.pas' {frmMain},
PatchClasses in 'PatchClasses.pas',
VDSP_CRC in '..\GenPat\VDSP_CRC.pas',
DLLWrapper in 'DLLWrapper.pas',
AboutForm in 'AboutForm.pas' {frmAbout},
PatchGenerator in '..\GenPat\PatchGenerator.pas',
TreeCode in '..\GenPat\TreeCode.pas';
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.