home *** CD-ROM | disk | FTP | other *** search
- program MemEncrypt;
-
- uses
- Forms,
- unMemEncrypt in 'unMemEncrypt.pas' {frmMemoryEncrypt},
- unKeyPair in 'unKeyPair.pas' {frmKeyPair},
- unOptions in 'unOptions.pas' {frmOptions},
- unUtility in 'unUtility.pas';
-
- {$R *.RES}
-
- begin
- Application.Initialize;
- Application.CreateForm(TfrmMemoryEncrypt, frmMemoryEncrypt);
- Application.CreateForm(TfrmKeyPair, frmKeyPair);
- Application.CreateForm(TfrmOptions, frmOptions);
- Application.Run;
- end.
-