OSDN Git Service

Removed ConstList.pas
[winbottle/winbottle.git] / bottleclient / SstpBottle.dpr
1 {*******************************************************}
2 {                                                       }
3 {       SSTP Bottle Client                              }
4 {                                                       }
5 {       Copyright (C) 2001-2002 \82È\82é(naruto)            }
6 {                                                       }
7 {*******************************************************}
8
9 program SstpBottle;
10
11 {%ToDo 'SstpBottle.todo'}
12
13 uses
14   Forms,
15   MainForm in 'MainForm.pas' {frmSender},
16   BRegExp in 'BRegExp.pas',
17   BottleDef in 'BottleDef.pas',
18   ConstEditor in 'ConstEditor.pas' {frmConstEditor},
19   SendConfirm in 'SendConfirm.pas' {frmConfirmSend},
20   SettingForm in 'SettingForm.pas' {frmSetting},
21   LogForm in 'LogForm.pas' {frmLog},
22   HeadValue in 'HeadValue.pas',
23   ChannelListForm in 'ChannelListForm.pas' {frmChannelList},
24   MessageBox in 'MessageBox.pas' {frmMessageBox},
25   Logs in 'Logs.pas',
26   HttpThread in 'HttpThread.pas',
27   LogDownload in 'LogDownload.pas' {frmLogDownload},
28   ColorSettingFrame in 'ColorSettingFrame.pas' {frmColorSetting: TFrame},
29   ScriptConsts in 'ScriptConsts.pas';
30
31 {$R *.RES}
32 {$DEFINE Mani}
33 {$IFDEF Manifest}
34 {$R manifest.RES}
35 {$ENDIF}
36
37 begin
38   Application.Initialize;
39   Application.Title := 'SSTP Bottle Client';
40   Application.ShowMainForm := true;
41   Application.CreateForm(TfrmSender, frmSender);
42   Application.CreateForm(TfrmConstEditor, frmConstEditor);
43   Application.CreateForm(TfrmLog, frmLog);
44   Application.CreateForm(TfrmChannelList, frmChannelList);
45   Application.CreateForm(TfrmMessageBox, frmMessageBox);
46   Application.CreateForm(TfrmLogDownload, frmLogDownload);
47   if not Application.Terminated then frmSender.Show;
48   Application.Run;
49 end.