init.h 594 B

12345678910111213141516171819202122
  1. // -*- mode: cpp; mode: fold -*-
  2. // Description /*{{{*/
  3. // $Id: init.h,v 1.2 1998/07/12 23:58:27 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 pkglibInitialize(Configuration &Cnf);
  15. #endif