]> git.saurik.com Git - apt.git/blob - apt-pkg/init.h
First draft of make system and name change to apt-pkg
[apt.git] / apt-pkg / init.h
1 // -*- mode: cpp; mode: fold -*-
2 // Description /*{{{*/
3 // $Id: init.h,v 1.2 1998/07/12 23:58: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 <apt-pkg/configuration.h>
18
19 bool pkglibInitialize(Configuration &Cnf);
20
21 #endif