OSDN Git Service

Added HttpThread.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   ConstList in 'ConstList.pas',
20   ConstText in 'ConstText.pas' {frmConstText},
21   SendConfirm in 'SendConfirm.pas' {frmConfirmSend},
22   SettingForm in 'SettingForm.pas' {frmSetting},
23   LogForm in 'LogForm.pas' {frmLog},
24   HeadValue in 'HeadValue.pas',
25   ChannelListForm in 'ChannelListForm.pas' {frmChannelList},
26   Sakura in '..\dpk SakuraSeeker\Sakura.pas',
27   MessageBox in 'MessageBox.pas' {frmMessageBox},
28   Slpp20 in '..\dpk Slpp10\Slpp20.pas',
29   Logs in 'Logs.pas',
30   HttpThread in 'HttpThread.pas';
31
32 {$R *.RES}
33 {$DEFINE Mani}
34 {$IFDEF Manifest}
35 {$R manifest.RES}
36 {$ENDIF}
37
38 begin
39   Application.Initialize;
40   Application.Title := 'SSTP Bottle Client';
41   Application.ShowMainForm := true;
42   Application.CreateForm(TfrmSender, frmSender);
43   Application.CreateForm(TfrmConstEditor, frmConstEditor);
44   Application.CreateForm(TfrmConstText, frmConstText);
45   Application.CreateForm(TfrmLog, frmLog);
46   Application.CreateForm(TfrmChannelList, frmChannelList);
47   Application.CreateForm(TfrmMessageBox, frmMessageBox);
48   if not Application.Terminated then frmSender.Show;
49   Application.Run;
50 end.