init.h 591 B

12345678910111213141516171819202122
  1. // -*- mode: cpp; mode: fold -*-
  2. // Description /*{{{*/
  3. // $Id: init.h,v 1.3 1998/07/16 06:08:37 jgg Exp $
  4. /* ######################################################################
  5. Init - Initialize the package library
  6. This function must be called to configure the config class before
  7. calling many APT library functions.
  8. ##################################################################### */
  9. /*}}}*/
  10. // Header section: pkglib
  11. #ifndef PKGLIB_INIT_H
  12. #define PKGLIB_INIT_H
  13. #include <apt-pkg/configuration.h>
  14. bool pkgInitialize(Configuration &Cnf);
  15. #endif