delphimvcframework/examples/QueueAck/Receiver/Receiver.dpr

19 lines
369 B
ObjectPascal
Raw Normal View History

2012-12-27 23:32:04 +01:00
program Receiver;
uses
Vcl.Forms,
2016-08-02 18:15:11 +02:00
ReceiverForm in 'ReceiverForm.pas' {ReceiverMainForm} ,
2012-12-27 23:32:04 +01:00
ThreadReceiver in 'ThreadReceiver.pas';
{$R *.res}
2016-08-02 18:15:11 +02:00
2012-12-27 23:32:04 +01:00
begin
2016-08-02 18:15:11 +02:00
ReportMemoryLeaksOnShutdown := True;
2012-12-27 23:32:04 +01:00
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TReceiverMainForm, ReceiverMainForm);
Application.Run;
2016-08-02 18:15:11 +02:00
2012-12-27 23:32:04 +01:00
end.