-
Notifications
You must be signed in to change notification settings - Fork 0
/
LMTSPack.cpp
25 lines (25 loc) · 969 Bytes
/
LMTSPack.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
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USERES("LMTSPack.res");
USEPACKAGE("vcl40.bpi");
USEPACKAGE("Celestial.bpi");
USEUNIT("RemoteHostInfo.cpp");
USEUNIT("HostList.cpp");
USEUNIT("HostAccountInfo.cpp");
USEUNIT("LMTSService.cpp");
USEFORM("FrmRemoteHostInfo.cpp", FormRemoteHostInfo);
USEFORM("FrmHostAccountInfo.cpp", FormHostAccountInfo);
USEFORM("FrmHostList.cpp", FormHostList);
USEUNIT("MailDistributor.cpp");
USEPACKAGE("vclx40.bpi");
//---------------------------------------------------------------------------
#pragma package(smart_init)
//---------------------------------------------------------------------------
// Package source.
//---------------------------------------------------------------------------
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
{
return 1;
}
//---------------------------------------------------------------------------