blob: 77309a88118fa14fdeb82abfec86ab68c9988285 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// view_changelog.h
//
// Copyright 2004 Daniel Burrows
//
// A utility function to view a package's changelog. Inserts widgets
// into the main UI as appropriate.
#ifndef VIEW_CHANGELOG_H
#define VIEW_CHANGELOG_H
#include <apt-pkg/pkgcache.h>
void view_changelog(pkgCache::VerIterator ver);
#endif
|