]>
Commit | Line | Data |
---|---|---|
9c14e3d6 AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
094a497d | 3 | // $Id: init.h,v 1.2 1998/07/12 23:58:27 jgg Exp $ |
9c14e3d6 AL |
4 | /* ###################################################################### |
5 | ||
6 | Init - Initialize the package library | |
7 | ||
8 | This function must be called to configure the config class before | |
9 | calling many APT library functions. | |
10 | ||
11 | ##################################################################### */ | |
12 | /*}}}*/ | |
13 | // Header section: pkglib | |
14 | #ifndef PKGLIB_INIT_H | |
15 | #define PKGLIB_INIT_H | |
16 | ||
094a497d | 17 | #include <apt-pkg/configuration.h> |
9c14e3d6 AL |
18 | |
19 | bool pkglibInitialize(Configuration &Cnf); | |
20 | ||
21 | #endif |