| 1 | // -*- mode: cpp; mode: fold -*- |
| 2 | // Description /*{{{*/ |
| 3 | // $Id: init.h,v 1.4 2001/02/20 07:03:17 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 | #ifndef PKGLIB_INIT_H |
| 14 | #define PKGLIB_INIT_H |
| 15 | |
| 16 | #include <apt-pkg/configuration.h> |
| 17 | #include <apt-pkg/pkgsystem.h> |
| 18 | |
| 19 | // See the makefile |
| 20 | #define APT_PKG_MAJOR 3 |
| 21 | #define APT_PKG_MINOR 1 |
| 22 | #define APT_PKG_RELEASE 0 |
| 23 | |
| 24 | extern const char *pkgVersion; |
| 25 | extern const char *pkgLibVersion; |
| 26 | extern const char *pkgOS; |
| 27 | extern const char *pkgCPU; |
| 28 | |
| 29 | bool pkgInitConfig(Configuration &Cnf); |
| 30 | bool pkgInitSystem(Configuration &Cnf,pkgSystem *&Sys); |
| 31 | |
| 32 | #ifdef APT_COMPATIBILITY |
| 33 | #if APT_COMPATIBILITY != 986 |
| 34 | #warning "Using APT_COMPATIBILITY" |
| 35 | #endif |
| 36 | |
| 37 | inline bool pkgInitialize(Configuration &Cnf) |
| 38 | { |
| 39 | return pkgInitConfig(Cnf) && pkgInitSystem(Cnf,_system); |
| 40 | }; |
| 41 | #endif |
| 42 | |
| 43 | #endif |