Global.pas 914 B

123456789101112131415161718192021222324252627282930313233
  1. { $HDR$}
  2. {**********************************************************************}
  3. { Unit archived using Team Coherence }
  4. { Team Coherence is Copyright 2002 by Quality Software Components }
  5. { }
  6. { For further information / comments, visit our WEB site at }
  7. { http://www.TeamCoherence.com }
  8. {**********************************************************************}
  9. {}
  10. { $Log: 17071: Global.pas }
  11. {
  12. Rev 1.0 3/13/2003 5:03:26 PM BGooijen
  13. Initial check in
  14. }
  15. {
  16. { Rev 1.0 2002.12.07 6:43:50 PM czhower
  17. }
  18. unit Global;
  19. interface
  20. var
  21. GDataPath: string = '';
  22. implementation
  23. uses
  24. SysUtils,filectrl;
  25. initialization
  26. GDataPath := ExtractFilePath(ParamStr(0)) + 'data' + '\';
  27. ForceDirectories(GDataPath);
  28. end.