init.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. // -*- mode: cpp; mode: fold -*-
  2. // Description /*{{{*/
  3. // $Id: init.h,v 1.9.2.2 2004/01/02 18:51:00 mdz 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. #ifndef PKGLIB_INIT_H
  11. #define PKGLIB_INIT_H
  12. class pkgSystem;
  13. class Configuration;
  14. // These lines are extracted by the makefiles and the buildsystem
  15. // Increasing MAJOR or MINOR results in the need of recompiling all
  16. // reverse-dependencies of libapt-pkg against the new SONAME.
  17. // Non-ABI-Breaks should only increase RELEASE number.
  18. // See also buildlib/libversion.mak
  19. #define APT_PKG_MAJOR 4
  20. #define APT_PKG_MINOR 12
  21. #define APT_PKG_RELEASE 0
  22. extern const char *pkgVersion;
  23. extern const char *pkgLibVersion;
  24. bool pkgInitConfig(Configuration &Cnf);
  25. bool pkgInitSystem(Configuration &Cnf,pkgSystem *&Sys);
  26. #endif