-
Notifications
You must be signed in to change notification settings - Fork 0
/
Celestial.cpp
45 lines (45 loc) · 1.45 KB
/
Celestial.cpp
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
33
34
35
36
37
38
39
40
41
42
43
44
45
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USEPACKAGE("Vcl40.bpi");
USEPACKAGE("Vclx40.bpi");
USEUNIT("TransmissionServer.cpp");
USEUNIT("AddressBook.cpp");
USEUNIT("AgentInfo.cpp");
USEUNIT("CmdStatsInfo.cpp");
USEUNIT("DialupAlerter.cpp");
USEUNIT("DigiClock.cpp");
USEUNIT("DiskMonitor.cpp");
USEUNIT("DiskMonitorFileInfo.cpp");
USEUNIT("DiskMonitorWaitThread.cpp");
USEUNIT("DotMatrix.cpp");
USEUNIT("HistoryComboBox.cpp");
USEUNIT("Lcd.cpp");
USEUNIT("MailHeaders.cpp");
USEUNIT("MailIdentity.cpp");
USEUNIT("MailUser.cpp");
USEUNIT("NewMailNotifier.cpp");
USEUNIT("Pop3Agent.cpp");
USEUNIT("Pop3Server.cpp");
USEUNIT("ServiceController.cpp");
USEUNIT("SmtpAgent.cpp");
USEUNIT("SmtpServer.cpp");
USEUNIT("StatusAreaIcon.cpp");
USEUNIT("Tokenizer.cpp");
USEUNIT("TransmissionClient.cpp");
USEUNIT("TransmissionMessage.cpp");
USEUNIT("DataSize.cpp");
USEUNIT("PopPeeker.cpp");
USEUNIT("CascadedList.cpp");
USEUNIT("MarkupParser.cpp");
USEUNIT("HtmlParser.cpp");
//---------------------------------------------------------------------------
#pragma package(smart_init)
//---------------------------------------------------------------------------
// Package source.
//---------------------------------------------------------------------------
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
{
return 1;
}
//---------------------------------------------------------------------------