-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfpc_atomic.lpr
More file actions
33 lines (29 loc) · 1.43 KB
/
fpc_atomic.lpr
File metadata and controls
33 lines (29 loc) · 1.43 KB
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
(******************************************************************************)
(* *)
(* Author : Uwe Schächterle (Corpsman) *)
(* *)
(* This file is part of FPC_Atomic *)
(* *)
(* See the file license.md, located under: *)
(* https://github.com/PascalCorpsman/Software_Licenses/blob/main/license.md *)
(* for details about the license. *)
(* *)
(* It is not allowed to change or remove this text from any *)
(* source file of the project. *)
(* *)
(******************************************************************************)
Program fpc_atomic;
{$MODE objfpc}{$H+}
Uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, Unit1, Unit18, uatomic;
Begin
Application.Title := '';
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TForm18, Form18);
Application.Run;
End.