mirror of
https://github.com/StephenGenusa/DCPCrypt.git
synced 2025-06-02 21:57:23 +02:00
14 lines
184 B
ObjectPascal
14 lines
184 B
ObjectPascal
|
program FileEncrypt;
|
||
|
|
||
|
uses
|
||
|
Forms,
|
||
|
uMain in 'uMain.pas' {frmMain};
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
begin
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TfrmMain, frmMain);
|
||
|
Application.Run;
|
||
|
end.
|