source:
MicroThreading/Demo/Demo.lpr
Last change on this file was 150, checked in by , 14 years ago | |
---|---|
File size: 320 bytes |
Line | |
---|---|
1 | program Demo; |
2 | |
3 | {$mode objfpc}{$H+} |
4 | |
5 | uses |
6 | {$IFDEF UNIX} |
7 | //{$IFDEF UseCThreads} |
8 | cthreads, |
9 | //{$ENDIF} |
10 | {$ENDIF} |
11 | Interfaces, // this includes the LCL widgetset |
12 | Forms, UMainForm, MicroThreading; |
13 | |
14 | {$R *.res} |
15 | |
16 | begin |
17 | Application.Initialize; |
18 | Application.CreateForm(TMainForm, MainForm); |
19 | Application.Run; |
20 | end. |
21 |
Note:
See TracBrowser
for help on using the repository browser.