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

  1. package VKDBF;
  2.  
  3. {$R *.RES}
  4. {$ALIGN ON}
  5. {$ASSERTIONS OFF}
  6. {$BOOLEVAL OFF}
  7. {$DEBUGINFO OFF}
  8. {$EXTENDEDSYNTAX ON}
  9. {$IMPORTEDDATA ON}
  10. {$IOCHECKS ON}
  11. {$LOCALSYMBOLS OFF}
  12. {$LONGSTRINGS ON}
  13. {$OPENSTRINGS ON}
  14. {$OPTIMIZATION ON}
  15. {$OVERFLOWCHECKS OFF}
  16. {$RANGECHECKS OFF}
  17. {$REFERENCEINFO OFF}
  18. {$SAFEDIVIDE OFF}
  19. {$STACKFRAMES OFF}
  20. {$TYPEDADDRESS OFF}
  21. {$VARSTRINGCHECKS ON}
  22. {$WRITEABLECONST ON}
  23. {$MINENUMSIZE 1}
  24. {$IMAGEBASE $400000}
  25. {$DESCRIPTION 'VK DBF V 1.0.5 beta for D5'}
  26. {$IMPLICITBUILD OFF}
  27.  
  28. requires
  29.   vcl50,
  30.   Vcldb50;
  31.  
  32. contains
  33.   VKDBFUtil in 'VKDBFUtil.pas',
  34.   VKDBFDataSet in 'VKDBFDataSet.pas',
  35.   VKDBFIndex in 'VKDBFIndex.pas',
  36.   VKDBFMemMgr in 'VKDBFMemMgr.pas',
  37.   VKDBFNTX in 'VKDBFNTX.pas',
  38.   VKDBFParser in 'VKDBFParser.pas',
  39.   VKDBFCDX in 'VKDBFCDX.pas',
  40.   VKDBFCrypt in 'VKDBFCrypt.pas',
  41.   VKDBFPrx in 'VKDBFPrx.pas';
  42.  
  43. end.
  44.