home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / Chip_2003-01_cd1.bin / zkuste / delphi / unity / d56 / FNDUTL.ZIP / Fundamentals3_Utilities.dpk < prev    next >
Encoding:
Text File  |  2002-10-29  |  1.3 KB  |  51 lines

  1. package Fundamentals3_Utilities;
  2.  
  3. {$R *.res}
  4. {$R 'System\cWindows.dcr'}
  5. {$ASSERTIONS ON}
  6. {$BOOLEVAL OFF}
  7. {$DEBUGINFO ON}
  8. {$EXTENDEDSYNTAX ON}
  9. {$IMPORTEDDATA ON}
  10. {$IOCHECKS ON}
  11. {$LOCALSYMBOLS ON}
  12. {$LONGSTRINGS ON}
  13. {$OPENSTRINGS ON}
  14. {$OPTIMIZATION ON}
  15. {$OVERFLOWCHECKS ON}
  16. {$RANGECHECKS ON}
  17. {$REFERENCEINFO ON}
  18. {$SAFEDIVIDE OFF}
  19. {$STACKFRAMES OFF}
  20. {$TYPEDADDRESS OFF}
  21. {$VARSTRINGCHECKS OFF}
  22. {$WRITEABLECONST OFF}
  23. {$MINENUMSIZE 1}
  24. {$IMAGEBASE $400000}
  25. {$DESCRIPTION 'Fundamentals 3 Utilities'}
  26. {$DESIGNONLY}
  27. {$IMPLICITBUILD OFF}
  28.  
  29. contains
  30.   cUtils in 'Utils\cUtils.pas',
  31.   cStrings in 'Utils\cStrings.pas',
  32.   cDateTime in 'Utils\cDateTime.pas',
  33.   cRandom in 'Utils\cRandom.pas',
  34.   cUnicodeCodecs in 'Unicode\cUnicodeCodecs.pas',
  35.   cUnicodeChar in 'Unicode\cUnicodeChar.pas',
  36.   cUnicode in 'Unicode\cUnicode.pas',
  37.   cUnicodeReader in 'Unicode\cUnicodeReader.pas',
  38.   cTypes in 'DataStructs\cTypes.pas',
  39.   cArrays in 'DataStructs\cArrays.pas',
  40.   cDictionaries in 'DataStructs\cDictionaries.pas',
  41.   cLinkedLists in 'DataStructs\cLinkedLists.pas',
  42.   cRegistry in 'System\cRegistry.pas',
  43.   cWindows in 'System\cWindows.pas',
  44.   cThreads in 'System\cThreads.pas',
  45.   cLog in 'System\cLog.pas',
  46.   cReaders in 'Streams\cReaders.pas',
  47.   cWriters in 'Streams\cWriters.pas',
  48.   cStreams in 'Streams\cStreams.pas';
  49.  
  50. end.
  51.