program AsyncServer; {#ROGEN:AsyncLibrary.rodl} // RemObjects: Careful, do not remove! uses Forms, AsyncServerMain in 'AsyncServerMain.pas' {AsyncServerMainForm}, AsyncLibrary_Intf in 'AsyncLibrary_Intf.pas', AsyncLibrary_Invk in 'AsyncLibrary_Invk.pas', AsyncService_Impl in 'AsyncService_Impl.pas'; {$R *.RES} {$R RODLFile.res} begin Application.Initialize; Application.Title := 'Async Server'; Application.CreateForm(TAsyncServerMainForm, AsyncServerMainForm); Application.Run; end.