|
Last change
on this file was 574, checked in by chronos, 18 months ago |
- Modified: Removed U prefix from unit names.
|
|
File size:
500 bytes
|
| Line | |
|---|
| 1 | program Demo;
|
|---|
| 2 |
|
|---|
| 3 | uses
|
|---|
| 4 | {$IFDEF UNIX}{$IFDEF UseCThreads}
|
|---|
| 5 | cthreads,
|
|---|
| 6 | {$ENDIF}{$ENDIF}
|
|---|
| 7 | Interfaces, // this includes the LCL widgetset
|
|---|
| 8 | Forms, SysUtils, FormMain, TemplateGenerics;
|
|---|
| 9 |
|
|---|
| 10 | {$R *.res}
|
|---|
| 11 |
|
|---|
| 12 | const
|
|---|
| 13 | HeapTraceLogFileName = 'heaptrclog.trc';
|
|---|
| 14 | begin
|
|---|
| 15 | DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLogFileName);
|
|---|
| 16 | SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLogFileName);
|
|---|
| 17 | Application.Initialize;
|
|---|
| 18 | Application.CreateForm(TFormMain, FormMain.FormMain);
|
|---|
| 19 | Application.Run;
|
|---|
| 20 | end.
|
|---|
| 21 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.