]>
Commit | Line | Data |
---|---|---|
9c14e3d6 AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
3 | // $Id: init.h,v 1.1 1998/07/09 05:12:27 jgg Exp $ | |
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 | ||
17 | #include <pkglib/configuration.h> | |
18 | ||
19 | bool pkglibInitialize(Configuration &Cnf); | |
20 | ||
21 | #endif |