]> git.saurik.com Git - apt-legacy.git/blame - apt-pkg/init.h
I am sick of that Package: error.
[apt-legacy.git] / apt-pkg / init.h
CommitLineData
da6ee469
JF
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
3// $Id: init.h,v 1.9.2.2 2004/01/02 18:51:00 mdz 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
00ec24d0
JF
20#define APT_PKG_MAJOR 4
21#define APT_PKG_MINOR 6
da6ee469
JF
22#define APT_PKG_RELEASE 0
23
24extern const char *pkgVersion;
25extern const char *pkgLibVersion;
da6ee469
JF
26
27bool pkgInitConfig(Configuration &Cnf);
28bool pkgInitSystem(Configuration &Cnf,pkgSystem *&Sys);
29
30#ifdef APT_COMPATIBILITY
31#if APT_COMPATIBILITY != 986
32#warning "Using APT_COMPATIBILITY"
33#endif
34
35inline bool pkgInitialize(Configuration &Cnf)
36{
37 return pkgInitConfig(Cnf) && pkgInitSystem(Cnf,_system);
38};
39#endif
40
41#endif