File: apt.h

package info (click to toggle)
console-apt 0.7.7.2potato2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 612 kB
  • ctags: 658
  • sloc: cpp: 6,883; sh: 152; makefile: 47
file content (18 lines) | stat: -rw-r--r-- 354 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * apt.h: interface for apt stuff
 */

#ifndef _apt_H
#define _apt_H

extern pkgCacheFile *CacheFile;
extern pkgDepCache *Cache;
extern pkgProblemResolver *Fix;
extern pkgRecords *Recs;

extern void initialize_cache();
extern void global_cache_reinit();
bool check_dependencies(bool);
extern void capt_show_broken(pkgDepCache &);

#endif /* _apt_H */