X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/094a497dd2dba1f47157e07d57f97c338a5ddaa0..51da0c3587c9d36a3c04b3e28b99d8331a29b230:/apt-pkg/init.h diff --git a/apt-pkg/init.h b/apt-pkg/init.h index ecfe702d4..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.2 1998/07/12 23:58:27 jgg Exp $ /* ###################################################################### Init - Initialize the package library @@ -10,12 +9,24 @@ ##################################################################### */ /*}}}*/ -// Header section: pkglib #ifndef PKGLIB_INIT_H #define PKGLIB_INIT_H +#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