program DynamicRequestServer; {#ROGEN:DynamicRequestLibrary.rodl} // RemObjects: Careful, do not remove! uses Forms, DynamicRequestServerMain in 'DynamicRequestServerMain.pas' {DynamicRequestServerMainForm}, DynamicRequestLibrary_Intf in 'DynamicRequestLibrary_Intf.pas', DynamicRequestLibrary_Invk in 'DynamicRequestLibrary_Invk.pas', DynamicRequestService_Impl in 'DynamicRequestService_Impl.pas'; {$R *.RES} {$R RODLFile.res} begin Application.Initialize; Application.Title := 'Dynamic Request Server'; Application.CreateForm(TDynamicRequestServerMainForm, DynamicRequestServerMainForm); Application.Run; end.