forked from benibela/apim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapim.lpr
26 lines (21 loc) · 804 Bytes
/
apim.lpr
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
program apim;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, anchordockpkg
{ you can add units after this },applicationConfig , mainunit, windowPropertySheet,
winconstwindow, searchTool, systemOptions, processList, options, wstyles,
windowList, proc9, welcome, windowcontrolfuncs, petools, apimshared;
{$IFDEF WINDOWS}{$R manifest.rc}{$ENDIF}
begin //#todo 9: check encoding
if Applicationconfig.initAll then begin
Application.Initialize;
Application.CreateForm(TmainForm, mainForm);
Application.CreateForm(TwindowConstForm, windowConstForm);
Application.Run;
Applicationconfig.finitAll;
end;
end.