-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPuttyCtnr.dpr
32 lines (27 loc) · 1.03 KB
/
PuttyCtnr.dpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
program PuttyCtnr;
uses
Forms,
MainForm in 'Form\MainForm.pas' {FormPuttyMain},
RsCommon in 'Lib\RsCommon.pas',
TermThread in 'Lib\TermThread.pas',
AboutForm in 'Form\AboutForm.pas' {FormAbout},
ConnectionForm in 'Form\ConnectionForm.pas' {FormConnection},
RsCrypt in 'Lib\RsCrypt.pas',
RsRawInput in 'Lib\RsRawInput.pas',
ChildForm in 'Form\ChildForm.pas' {FormChild},
MingwForm in 'Form\MingwForm.pas' {FormMingw},
PasswordForm in 'Form\PasswordForm.pas' {FormPassword},
NTLogon in 'Lib\NTLogon.pas',
DirectDraw in 'Component\SmartTabs21\DirectDraw.pas',
GDIPAPI in 'Component\SmartTabs21\GDIPAPI.pas',
GDIPOBJ in 'Component\SmartTabs21\GDIPOBJ.pas',
GDIPUTIL in 'Component\SmartTabs21\GDIPUTIL.pas',
rkSmartTabs in 'Component\SmartTabs21\rkSmartTabs.pas',
SyncKeyForm in 'Form\SyncKeyForm.pas' {FormSyncKey};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'PuTTY ÄÁÅ×À̳Ê';
Application.CreateForm(TFormPuttyMain, FormPuttyMain);
Application.Run;
end.