- 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
22 lines
609 B
ObjectPascal
22 lines
609 B
ObjectPascal
program NamedPipeServer;
|
|
|
|
{#ROGEN:NamedPipeLibrary.rodl} // RemObjects: Careful, do not remove!
|
|
|
|
uses
|
|
uROComInit,
|
|
SvcMgr,
|
|
NamedPipeServerMain in 'NamedPipeServerMain.pas' {NamedPipeServerService: TService},
|
|
NamedPipeLibrary_Intf in 'NamedPipeLibrary_Intf.pas',
|
|
NamedPipeLibrary_Invk in 'NamedPipeLibrary_Invk.pas',
|
|
NamedPipeService_Impl in 'NamedPipeService_Impl.pas';
|
|
|
|
{$R *.RES}
|
|
{$R RODLFile.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.Title := 'Named Pipes Server';
|
|
Application.CreateForm(TNamedPipeServerService, NamedPipeServerService);
|
|
Application.Run;
|
|
end.
|