- Recompilación en Delphi10 de todos los paquetes de RO para generar las DCU's en Lib\D10 - Recompilación en Delphi10 de todos los paquetes de DA para generar las DCU's en Lib\D10 git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.RemObjects@9 b6239004-a887-0f4b-9937-50029ccdca16
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.
|