home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / Chip_2003-01_cd1.bin / zkuste / delphi / kompon / d56 / VKDBF.ZIP / VKDBF6.dpk < prev    next >
Text File  |  2002-07-09  |  867b  |  44 lines

  1. package VKDBF6;
  2.  
  3. {$R *.res}
  4. {$ALIGN 8}
  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 OFF}
  16. {$RANGECHECKS OFF}
  17. {$REFERENCEINFO ON}
  18. {$SAFEDIVIDE OFF}
  19. {$STACKFRAMES OFF}
  20. {$TYPEDADDRESS OFF}
  21. {$VARSTRINGCHECKS ON}
  22. {$WRITEABLECONST OFF}
  23. {$MINENUMSIZE 1}
  24. {$IMAGEBASE $400000}
  25. {$DESCRIPTION 'VK DBF V 1.0.5 beta for D6'}
  26. {$IMPLICITBUILD OFF}
  27.  
  28. requires
  29.   vcl,
  30.   vcldb;
  31.  
  32. contains
  33.   VKDBFUtil in 'VKDBFUtil.pas',
  34.   VKDBFCrypt in 'VKDBFCrypt.pas',
  35.   VKDBFDataSet in 'VKDBFDataSet.pas',
  36.   VKDBFIndex in 'VKDBFIndex.pas',
  37.   VKDBFMemMgr in 'VKDBFMemMgr.pas',
  38.   VKDBFNTX in 'VKDBFNTX.pas',
  39.   VKDBFParser in 'VKDBFParser.pas',
  40.   VKDBFPrx in 'VKDBFPrx.pas',
  41.   VKDBFCDX in 'VKDBFCDX.pas';
  42.  
  43. end.
  44.