Skip to content

Commit

Permalink
Windows service demo
Browse files Browse the repository at this point in the history
  • Loading branch information
jachguate committed Feb 28, 2022
1 parent cde4a94 commit 5eae984
Show file tree
Hide file tree
Showing 5 changed files with 867 additions and 0 deletions.
14 changes: 14 additions & 0 deletions demos/AppType/WindowsService/jachLogServiceDemo.dpr
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
program jachLogServiceDemo;

uses
Vcl.SvcMgr,
usvcDemo in 'usvcDemo.pas' {svcDemo: TService};

{$R *.RES}

begin
if not Application.DelayInitialize or Application.Installing then
Application.Initialize;
Application.CreateForm(TsvcDemo, svcDemo);
Application.Run;
end.
Loading

0 comments on commit 5eae984

Please sign in to comment.