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