Componentes.Terceros.RemObj.../internal/5.0.30.691/1/RemObjects SDK for Delphi/Samples/Async/AsyncServer.dpr

22 lines
607 B
ObjectPascal

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.