mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
18 lines
372 B
ObjectPascal
18 lines
372 B
ObjectPascal
|
program GlobalDemo;
|
||
|
|
||
|
{$MODE Delphi}
|
||
|
|
||
|
uses
|
||
|
Forms, LResources, Interfaces,
|
||
|
MainForm in 'MainForm.pas' {frmMain},
|
||
|
StompClient in '../../../StompClient.pas',
|
||
|
StompTypes in '../../../StompTypes.pas';
|
||
|
|
||
|
{$IFDEF WINDOWS}{$R GlobalDemo.rc}{$ENDIF}
|
||
|
begin
|
||
|
{$I GlobalDemo.lrs}
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TfrmMain, frmMain);
|
||
|
Application.Run;
|
||
|
end.
|