diff options
Diffstat (limited to 'apt-pkg/init.h')
-rw-r--r-- | apt-pkg/init.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/apt-pkg/init.h b/apt-pkg/init.h new file mode 100644 index 000000000..bd03dd10d --- /dev/null +++ b/apt-pkg/init.h @@ -0,0 +1,21 @@ +// -*- mode: cpp; mode: fold -*- +// Description /*{{{*/ +// $Id: init.h,v 1.1 1998/07/09 05:12:27 jgg Exp $ +/* ###################################################################### + + Init - Initialize the package library + + This function must be called to configure the config class before + calling many APT library functions. + + ##################################################################### */ + /*}}}*/ +// Header section: pkglib +#ifndef PKGLIB_INIT_H +#define PKGLIB_INIT_H + +#include <pkglib/configuration.h> + +bool pkglibInitialize(Configuration &Cnf); + +#endif |