-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcryptx.dpr
More file actions
executable file
·22 lines (18 loc) · 914 Bytes
/
cryptx.dpr
File metadata and controls
executable file
·22 lines (18 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
program EncByPass;
{%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Drawing.dll'}
{%DelphiDotNetAssemblyCompiler 'd:\program files\common files\borland shared\bds\shared assemblies\2.0\Borland.Vcl.dll'}
{%DelphiDotNetAssemblyCompiler 'd:\program files\common files\borland shared\bds\shared assemblies\2.0\Borland.Delphi.dll'}
{%DelphiDotNetAssemblyCompiler 'd:\program files\common files\borland shared\bds\shared assemblies\2.0\Borland.VclRtl.dll'}
{%DelphiDotNetAssemblyCompiler '$(SystemRoot)\Microsoft.NET\Framework\v1.1.4322\System.dll'}
uses
Forms,
Main in 'Main.pas' {MainForm},
Wcrypt2 in '..\..\Lib\Crypto\Pas\Wcrypt2.pas',
Passwd in 'Passwd.pas' {PasswordForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TPasswordForm, PasswordForm);
Application.Run;
end.