/components/chmhelp/packages/help/lhelpcontrolpkg.pas

http://github.com/graemeg/lazarus · Pascal · 23 lines · 12 code · 7 blank · 4 comment · 0 complexity · 11538c13963f62443d8b07ccd5cc1828 MD5 · raw file

  1. { This file was automatically created by Lazarus. Do not edit!
  2. This source is only used to compile and install the package.
  3. }
  4. unit lhelpcontrolpkg;
  5. {$warn 5023 off : no warning about unused units}
  6. interface
  7. uses
  8. LHelpControl, LazHelpCHM, LazarusPackageIntf;
  9. implementation
  10. procedure Register;
  11. begin
  12. RegisterUnit('LazHelpCHM', @LazHelpCHM.Register);
  13. end;
  14. initialization
  15. RegisterPackage('lhelpcontrolpkg', @Register);
  16. end.