Componentes.Terceros.RemObj.../official/5.0.23.613/RemObjects SDK for Delphi/Samples/Dispatch Notifier/DispatchNotifierServer.dpr

20 lines
631 B
ObjectPascal

program DispatchNotifierServer;
{#ROGEN:DispatchNotifierLibrary.rodl} // RemObjects: Careful, do not remove!
uses
Forms,
DispatchNotifierServerMain in 'DispatchNotifierServerMain.pas' {DispatchNotifierServerMainForm},
DispatchNotifierLibrary_Intf in 'DispatchNotifierLibrary_Intf.pas',
DispatchNotifierLibrary_Invk in 'DispatchNotifierLibrary_Invk.pas',
DispatchNotifierService_Impl in 'DispatchNotifierService_Impl.pas';
{$R *.RES}
{$R RODLFile.res}
begin
Application.Initialize;
Application.CreateForm(TDispatchNotifierServerMainForm, DispatchNotifierServerMainForm);
Application.Run;
end.