]>
Commit | Line | Data |
---|---|---|
1 | // -*- mode: cpp; mode: fold -*- | |
2 | // Description /*{{{*/ | |
3 | // $Id: init.h,v 1.3 1998/07/16 06:08:37 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 <apt-pkg/configuration.h> | |
18 | ||
19 | bool pkgInitialize(Configuration &Cnf); | |
20 | ||
21 | #endif |