2008-10-31 21:18:20 +00:00
|
|
|
program NAFMgr;
|
2023-02-17 16:28:47 +00:00
|
|
|
|
2008-10-31 21:18:20 +00:00
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
uses
|
|
|
|
Interfaces,
|
|
|
|
Forms,
|
2023-02-23 13:55:39 +00:00
|
|
|
ogfirst in '..\..\source\ogfirst.pas',
|
2009-07-28 13:17:46 +00:00
|
|
|
NAFMGR1 in 'NAFMGR1.pas' {NafFrm};
|
2008-10-31 21:18:20 +00:00
|
|
|
|
2023-02-17 16:28:47 +00:00
|
|
|
{$R *.res}
|
2008-10-31 21:18:20 +00:00
|
|
|
|
|
|
|
begin
|
|
|
|
Application.Initialize;
|
|
|
|
Application.Title := 'Network File Access Manager';
|
|
|
|
Application.CreateForm(TNafFrm, NafFrm);
|
2023-02-20 17:36:51 +00:00
|
|
|
|
2023-02-17 16:28:47 +00:00
|
|
|
if IsFirstInstance then
|
|
|
|
Application.Run
|
2008-10-31 21:18:20 +00:00
|
|
|
else
|
2023-02-17 16:28:47 +00:00
|
|
|
ActivateFirstInstance;
|
2008-10-31 21:18:20 +00:00
|
|
|
end.
|