BSOne.SFC/Tocsg.Module/UrlPrevent/UrlPrevent.dpr

19 lines
418 B
Plaintext

program UrlPrevent;
uses
Vcl.Forms,
DUrlPrvMain in 'DUrlPrvMain.pas' {DlgUrlPrvMain},
NetFwTypeLib_TLB in '..\MgWinFW\NetFwTypeLib_TLB.pas',
Tocsg.Firewall in '..\MgWinFW\Tocsg.Firewall.pas';
{$R *.res}
begin
ReportMemoryLeaksOnShutdown := DebugHook <> 0;
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TDlgUrlPrvMain, DlgUrlPrvMain);
Application.Run;
end.