mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
16 lines
339 B
ObjectPascal
16 lines
339 B
ObjectPascal
|
program udp_syslog;
|
||
|
|
||
|
uses
|
||
|
Vcl.Forms,
|
||
|
UDPServerClientForm in 'UDPServerClientForm.pas' {FUDPServerClientForm},
|
||
|
LoggerProConfig in 'LoggerProConfig.pas';
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
begin
|
||
|
Application.Initialize;
|
||
|
Application.MainFormOnTaskbar := True;
|
||
|
Application.CreateForm(TFUDPServerClientForm, FUDPServerClientForm);
|
||
|
Application.Run;
|
||
|
end.
|