tdbf_l.pas 364 B

12345678910111213141516171819202122
  1. { This file was automatically created by Lazarus. Do not edit!
  2. This source is only used to compile and install
  3. the package tdbf_l 0.0.
  4. }
  5. unit tdbf_l;
  6. interface
  7. uses
  8. Dbf, Dbf_Reg, LazarusPackageIntf;
  9. implementation
  10. procedure Register;
  11. begin
  12. RegisterUnit('Dbf', @Dbf_Reg.Register);
  13. end;
  14. initialization
  15. RegisterPackage('tdbf_l', @Register)
  16. end.