Componentes.Terceros.RemObj.../internal/5.0.23.613/1/RemObjects SDK for Delphi/Samples/Proxy Server/ProxyServer_MainServer.dpr
david f0e35ec439 - Eliminadas las librerías para Delphi 6 (Dcu\D6) en RO y DA.
- Recompilación de RO para poner RemObjects_Core_D10 como paquete de runtime/designtime.

git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.RemObjects@3 b6239004-a887-0f4b-9937-50029ccdca16
2007-09-10 10:40:17 +00:00

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.