-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathServiceDemoBlogsEmbarcadero.dpr
32 lines (26 loc) · 1.05 KB
/
ServiceDemoBlogsEmbarcadero.dpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
program ServiceDemoBlogsEmbarcadero;
uses
Vcl.SvcMgr,
ServiceUnit in 'ServiceUnit.pas' {Service1: TService},
BackgroundThreadUnit in 'BackgroundThreadUnit.pas';
{$R *.RES}
begin
// Windows 2003 Server requires StartServiceCtrlDispatcher to be
// called before CoRegisterClassObject, which can be called indirectly
// by Application.Initialize. TServiceApplication.DelayInitialize allows
// Application.Initialize to be called from TService.Main (after
// StartServiceCtrlDispatcher has been called).
//
// Delayed initialization of the Application object may affect
// events which then occur prior to initialization, such as
// TService.OnCreate. It is only recommended if the ServiceApplication
// registers a class object with OLE and is intended for use with
// Windows 2003 Server.
//
// Application.DelayInitialize := True;
//
if not Application.DelayInitialize or Application.Installing then
Application.Initialize;
Application.CreateForm(TService1, MyService);
Application.Run;
end.