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', async_EmailSettings in 'async_EmailSettings.pas' {async_EmailSettingsForm}; {$R *.RES} {$R RODLFile.res} begin Application.Initialize; Application.Title := 'Async Server'; Application.CreateForm(TAsyncServerMainForm, AsyncServerMainForm); Application.Run; end.