VPatch 2.0 final
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2798 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
2449fbc6bd
commit
6dd280b24f
22 changed files with 3566 additions and 14 deletions
19
Contrib/VPatch/Source/GUI/VPatchGUI.dpr
Normal file
19
Contrib/VPatch/Source/GUI/VPatchGUI.dpr
Normal file
|
@ -0,0 +1,19 @@
|
|||
program VPatchGUI;
|
||||
|
||||
uses
|
||||
Forms,
|
||||
MainForm in 'MainForm.pas' {frmMain},
|
||||
PatchClasses in 'PatchClasses.pas',
|
||||
VDSP_CRC in '..\VDSP_CRC.pas',
|
||||
DLLWrapper in 'DLLWrapper.pas',
|
||||
AboutForm in 'AboutForm.pas' {frmAbout},
|
||||
PatchGenerator in '..\PatchGenerator.pas',
|
||||
TreeCode in '..\TreeCode.pas';
|
||||
|
||||
{$R *.res}
|
||||
|
||||
begin
|
||||
Application.Initialize;
|
||||
Application.CreateForm(TfrmMain, frmMain);
|
||||
Application.Run;
|
||||
end.
|
Loading…
Add table
Add a link
Reference in a new issue