home *** CD-ROM | disk | FTP | other *** search
- package Fundamentals3_Utilities;
-
- {$R *.res}
- {$R 'System\cWindows.dcr'}
- {$ASSERTIONS ON}
- {$BOOLEVAL OFF}
- {$DEBUGINFO ON}
- {$EXTENDEDSYNTAX ON}
- {$IMPORTEDDATA ON}
- {$IOCHECKS ON}
- {$LOCALSYMBOLS ON}
- {$LONGSTRINGS ON}
- {$OPENSTRINGS ON}
- {$OPTIMIZATION ON}
- {$OVERFLOWCHECKS ON}
- {$RANGECHECKS ON}
- {$REFERENCEINFO ON}
- {$SAFEDIVIDE OFF}
- {$STACKFRAMES OFF}
- {$TYPEDADDRESS OFF}
- {$VARSTRINGCHECKS OFF}
- {$WRITEABLECONST OFF}
- {$MINENUMSIZE 1}
- {$IMAGEBASE $400000}
- {$DESCRIPTION 'Fundamentals 3 Utilities'}
- {$DESIGNONLY}
- {$IMPLICITBUILD OFF}
-
- contains
- cUtils in 'Utils\cUtils.pas',
- cStrings in 'Utils\cStrings.pas',
- cDateTime in 'Utils\cDateTime.pas',
- cRandom in 'Utils\cRandom.pas',
- cUnicodeCodecs in 'Unicode\cUnicodeCodecs.pas',
- cUnicodeChar in 'Unicode\cUnicodeChar.pas',
- cUnicode in 'Unicode\cUnicode.pas',
- cUnicodeReader in 'Unicode\cUnicodeReader.pas',
- cTypes in 'DataStructs\cTypes.pas',
- cArrays in 'DataStructs\cArrays.pas',
- cDictionaries in 'DataStructs\cDictionaries.pas',
- cLinkedLists in 'DataStructs\cLinkedLists.pas',
- cRegistry in 'System\cRegistry.pas',
- cWindows in 'System\cWindows.pas',
- cThreads in 'System\cThreads.pas',
- cLog in 'System\cLog.pas',
- cReaders in 'Streams\cReaders.pas',
- cWriters in 'Streams\cWriters.pas',
- cStreams in 'Streams\cStreams.pas';
-
- end.
-