| 12345678910111213141516171819202122 |
- // -*- 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
|