Changeset 19 for trunk/Directories.pas


Ignore:
Timestamp:
Jan 8, 2017, 11:36:18 AM (7 years ago)
Author:
chronos
Message:
  • Modified: Disable assertions for structure size to test 64-bit build.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Directories.pas

    r16 r19  
    99function LocalizedFilePath(path: string): string;
    1010
     11
    1112implementation
    1213
    1314uses
    14   LCLIntf, LCLType, LMessages, SysUtils, FileUtil;
     15  LCLIntf, LCLType, SysUtils, FileUtil;
    1516
    1617var
     
    3233end;
    3334
    34 procedure Init;
     35procedure InitUnit;
    3536begin
    3637  HomeDir := ExtractFilePath(ParamStr(0));
     
    5859          PChar(DataDir + 'Saved\' + src.Name), false);
    5960    until FindNext(src) <> 0;
    60   end;
     61end;
    6162
    6263initialization
    6364
    64 Init;
     65InitUnit;
    6566
    6667end.
Note: See TracChangeset for help on using the changeset viewer.