- 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
66 lines
2.3 KiB
ObjectPascal
66 lines
2.3 KiB
ObjectPascal
unit RemObjects_Indy_Reg;
|
|
|
|
{----------------------------------------------------------------------------}
|
|
{ RemObjects SDK Library - Indy Components }
|
|
{ }
|
|
{ compiler: Delphi 5 and up, Kylix 2 and up }
|
|
{ platform: Win32, Linux }
|
|
{ }
|
|
{ (c)opyright RemObjects Software. all rights reserved. }
|
|
{ }
|
|
{ Using this code requires a valid license of the RemObjects SDK }
|
|
{ which can be obtained at http://www.remobjects.com. }
|
|
{----------------------------------------------------------------------------}
|
|
|
|
{$I RemObjects.inc}
|
|
|
|
interface
|
|
|
|
procedure Register;
|
|
|
|
implementation
|
|
|
|
uses
|
|
{$IFDEF FPC}LResources,{$ENDIF}
|
|
Classes,
|
|
{$IFDEF BDS}DesignIntf,{$ENDIF}
|
|
uRORes,
|
|
uROSuperTCPChannel, uROSuperTCPServer,
|
|
uROIndyTCPChannel, uROIndyHTTPChannel, uROIndyUDPChannel,
|
|
uROIndyHTTPServer, uROIndyTCPServer, uROIndyUDPServer,
|
|
uROBroadcastChannel, uROBroadcastServer,
|
|
uROIndyEmailChannel, uROIndyEmailServer,
|
|
uRODiscovery, uROIndySuperHttpChannel;
|
|
|
|
{$IFNDEF FPC}
|
|
{$R RemObjects_Indy_Glyphs.res}
|
|
{$ENDIF}
|
|
|
|
procedure Register;
|
|
begin
|
|
{$IFDEF BDS}
|
|
{$IFNDEF RemObjects_NO_DEMANDLOAD_FIX}
|
|
ForceDemandLoadState(dlDisable);
|
|
{$ENDIF}
|
|
{$ENDIF}
|
|
RegisterComponents(str_ProductName,
|
|
[TROIndyHTTPServer, TROIndyHTTPChannel,
|
|
TROIndyTCPServer, TROIndyTCPChannel,
|
|
TROSuperTcpServer, TROSuperTcpChannel,
|
|
TROIndyUDPServer, TROIndyUDPChannel,
|
|
{$IFDEF MSWINDOWS}
|
|
TROBroadcastChannel, TROBroadcastServer,
|
|
TRODiscoveryClient, TRODiscoveryServer,
|
|
{$ENDIF MSWINDOWS}
|
|
TROEmailChannel, TROEmailServer,
|
|
TROIndySuperHttpChannel]);
|
|
|
|
|
|
end;
|
|
|
|
{$IFDEF FPC}
|
|
initialization
|
|
{$i RemObjects_Indy_Glyphs.lrs}
|
|
{$ENDIF}
|
|
end.
|