source: branches/templates/templates.lpr

Last change on this file was 44, checked in by chronos, 8 months ago
  • Added: More devices.
File size: 426 bytes
Line 
1program templates;
2
3{$mode objfpc}{$H+}
4
5uses
6 {$IFDEF UNIX}
7 cthreads,
8 {$ENDIF}
9 {$IFDEF HASAMIGA}
10 athreads,
11 {$ENDIF}
12 Interfaces, // this includes the LCL widgetset
13 Forms, UFormMain, FrameBuffer
14 { you can add units after this };
15
16{$R *.res}
17
18begin
19 RequireDerivedFormResource:=True;
20 Application.Scaled:=True;
21 Application.Initialize;
22 Application.CreateForm(TFormMain, FormMain);
23 Application.Run;
24end.
25
Note: See TracBrowser for help on using the repository browser.