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.