Componentes.Terceros.RemObj.../internal/5.0.23.613/1/RemObjects SDK for Delphi/Samples/Proxy Server/ProxyServer_MainServer.dpr

21 lines
682 B
ObjectPascal
Raw Normal View History

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.