Componentes.Terceros.RemObj.../internal/5.0.24.615/1/RemObjects SDK for Delphi/Samples/Arrays/ArraysServer.dpr

22 lines
558 B
ObjectPascal

program ArraysServer;
{#ROGEN:ArraysLibrary.rodl} // RemObjects: Careful, do not remove!
uses
uROComInit,
Forms,
ArraysServerMain in 'ArraysServerMain.pas' {ArraysServerMainForm},
ArraysLibrary_Intf in 'ArraysLibrary_Intf.pas',
ArraysLibrary_Invk in 'ArraysLibrary_Invk.pas',
ArraysService_Impl in 'ArraysService_Impl.pas';
{$R *.res}
{$R RODLFile.res}
begin
Application.Initialize;
Application.Title := 'Arrays Server';
Application.CreateForm(TArraysServerMainForm, ArraysServerMainForm);
Application.Run;
end.