Changeset 429 for ModularSystem/Demo/Demo.lpr
- Timestamp:
- Oct 17, 2012, 1:21:41 PM (12 years ago)
- Location:
- ModularSystem/Demo
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
ModularSystem/Demo
- Property svn:ignore
-
old new 5 5 Demo.lps 6 6 Demo 7 heaptrclog.trc
-
- Property svn:ignore
-
ModularSystem/Demo/Demo.lpr
r394 r429 8 8 {$ENDIF}{$ENDIF} 9 9 Interfaces, // this includes the LCL widgetset 10 Forms, UMainForm, UModuleUser, UModuleBase, UModuleACL ;10 Forms, UMainForm, UModuleUser, UModuleBase, UModuleACL, ULogForm, SysUtils; 11 11 12 12 {$R *.res} 13 13 14 {$IFDEF DEBUG} 15 const 16 HeapTraceLog = 'heaptrclog.trc'; 17 {$ENDIF} 18 14 19 begin 20 {$IFDEF DEBUG} 21 // Heap trace 22 DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog); 23 SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog); 24 {$ENDIF} 25 15 26 RequireDerivedFormResource := True; 16 27 Application.Initialize; 17 28 Application.CreateForm(TMainForm, MainForm); 29 Application.CreateForm(TLogForm, LogForm); 18 30 Application.Run; 19 31 end.
Note:
See TracChangeset
for help on using the changeset viewer.