Ignore:
Timestamp:
Jan 15, 2011, 10:03:27 PM (14 years ago)
Author:
george
Message:
  • Added: Generating encoded numbers for DynNumber demo.
Location:
CoolStreaming/Demo/DynNumber
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CoolStreaming/Demo/DynNumber

    • Property svn:ignore
      •  

        old new  
        11DynNumberDemo.exe
        22lib
         3heaptrclog.trc
         4DynNumberDemo
  • CoolStreaming/Demo/DynNumber/DynNumberDemo.lpr

    r125 r126  
    77  cthreads,
    88  {$ENDIF}{$ENDIF}
    9   Interfaces, // this includes the LCL widgetset
     9  Interfaces, SysUtils, // this includes the LCL widgetset
    1010  Forms, UMainForm, CoolStreaming
    1111  { you can add units after this };
     
    1313{$R *.res}
    1414
     15const
     16  HeapTraceLog = 'heaptrclog.trc';
    1517begin
     18  // Heap trace
     19  DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
     20  SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
     21
    1622  Application.Initialize;
    1723  Application.CreateForm(TMainForm, MainForm);
Note: See TracChangeset for help on using the changeset viewer.