-
Notifications
You must be signed in to change notification settings - Fork 7
/
stimulus_control.lpr
45 lines (35 loc) · 944 Bytes
/
stimulus_control.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
Stimulus Control
Copyright (C) 2014-2017 Carlos Rafael Fernandes Picanço, Universidade Federal do Pará.
The present file is distributed under the terms of the GNU General Public License (GPL v3.0).
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
}
program stimulus_control;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}
{$IFDEF UseCThreads}
cthreads
, cmem
,
{$ENDIF}
{$ENDIF}
Interfaces // this includes the LCL widgetset
, Forms
, userconfigs
{$ifdef DEBUG}
, Loggers.Debug
, sysutils
{$endif}
;
{$R *.res}
begin
Application.Initialize;
{$ifdef DEBUG}
DebugLn(mt_Information + 'Application Title:' + Application.Title);
DebugLn(mt_Debug + 'Application ThreadID:' + IntToStr(ThreadID));
{$endif}
Application.CreateForm(TFormUserConfig, FormUserConfig);
Application.Run;
end.