source: MicroThreading/Demo/Demo.lpr

Last change on this file was 150, checked in by george, 14 years ago
  • Fixed: Micro threads freeing.
File size: 320 bytes
Line 
1program Demo;
2
3{$mode objfpc}{$H+}
4
5uses
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
16begin
17 Application.Initialize;
18 Application.CreateForm(TMainForm, MainForm);
19 Application.Run;
20end.
21
Note: See TracBrowser for help on using the repository browser.