X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/9c14e3d619e713aefa623986b5bbae81a1d6cc94..91e42c2b4e9a6e8c7c1db29e9d1606741d251ca0:/apt-pkg/init.h?ds=sidebyside diff --git a/apt-pkg/init.h b/apt-pkg/init.h index bd03dd10d..d062392e3 100644 --- a/apt-pkg/init.h +++ b/apt-pkg/init.h @@ -1,6 +1,5 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: init.h,v 1.1 1998/07/09 05:12:27 jgg Exp $ /* ###################################################################### Init - Initialize the package library @@ -10,12 +9,24 @@ ##################################################################### */ /*}}}*/ -// Header section: pkglib #ifndef PKGLIB_INIT_H #define PKGLIB_INIT_H -#include +#ifndef APT_8_CLEANER_HEADERS +#include +#include +#endif +#ifndef APT_10_CLEANER_HEADERS +#include +#endif + +class pkgSystem; +class Configuration; + +extern const char *pkgVersion; +extern const char *pkgLibVersion; -bool pkglibInitialize(Configuration &Cnf); +bool pkgInitConfig(Configuration &Cnf); +bool pkgInitSystem(Configuration &Cnf,pkgSystem *&Sys); #endif