mirror of
https://github.com/StephenGenusa/DCPCrypt.git
synced 2024-11-24 08:02:11 +02:00
5fc435d45f
DCPCrypt by David Barton updated and tested with Delphi 2009, 2010, XE, XE2, XE3, XE4, XE5 by Warren Postma. Updated for XE7 by Stephen Genusa.
14 lines
181 B
ObjectPascal
14 lines
181 B
ObjectPascal
program FileHash;
|
|
|
|
uses
|
|
Forms,
|
|
uMain in 'uMain.pas' {frmMain};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TfrmMain, frmMain);
|
|
Application.Run;
|
|
end.
|