21 lines
682 B
ObjectPascal
21 lines
682 B
ObjectPascal
|
|
program ProxyServer_MainServer;
|
||
|
|
|
||
|
|
{#ROGEN:ProxyServerMainLibrary.rodl} // RemObjects: Careful, do not remove!
|
||
|
|
|
||
|
|
uses
|
||
|
|
Forms,
|
||
|
|
ProxyServer_MainServer_Main in 'ProxyServer_MainServer_Main.pas' {ProxyServer_MainServer_MainForm},
|
||
|
|
ProxyServerMainLibrary_Intf in 'ProxyServerMainLibrary_Intf.pas',
|
||
|
|
ProxyServerMainLibrary_Invk in 'ProxyServerMainLibrary_Invk.pas',
|
||
|
|
ProxyServerMainService_Impl in 'ProxyServerMainService_Impl.pas';
|
||
|
|
|
||
|
|
{$R *.RES}
|
||
|
|
{$R RODLFile.res}
|
||
|
|
|
||
|
|
begin
|
||
|
|
Application.Initialize;
|
||
|
|
Application.Title := 'ProxyServer - Main Server';
|
||
|
|
Application.CreateForm(TProxyServer_MainServer_MainForm, ProxyServer_MainServer_MainForm);
|
||
|
|
Application.Run;
|
||
|
|
end.
|