Changeset 10 for trunk/Integrated.lpr


Ignore:
Timestamp:
Jan 7, 2017, 2:33:20 PM (7 years ago)
Author:
chronos
Message:
  • Modified: Created CevoComponents ackage for installable custom components.
  • Fixed: Compile time range check error.
  • Added: Heaptrace check and fixed some memory leaks.
  • Fixed: MaskD function.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Integrated.lpr

    r9 r10  
    33
    44uses
    5   Forms, Interfaces,
     5  Forms, Interfaces, SysUtils,
    66  StringTables in 'StringTables.pas',
    77  Directories in 'Directories.pas',
     
    4747{$R cevo.RES}
    4848
     49{$IFDEF DEBUG}
     50const
     51  HeapTraceLog = 'heaptrclog.trc';
     52{$ENDIF}
     53
    4954begin
     55  {$IFDEF DEBUG}
     56  // Heap trace
     57  DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
     58  SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
     59  {$ENDIF}
     60
    5061  DotNetClient := nil;
    5162  Application.Initialize;
Note: See TracChangeset for help on using the changeset viewer.