blob: 050d3a66825344fdb5ae970d2b7f8fd5d34d39e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef APTPRIVATE_PRIVATE_UPGRADE_H
#define APTPRIVATE_PRIVATE_UPGRADE_H
#include <apt-pkg/cmndline.h>
bool DoDistUpgrade(CommandLine &CmdL);
bool DoUpgradeNoNewPackages(CommandLine &CmdL);
bool DoUpgradeWithAllowNewPackages(CommandLine &CmdL);
#endif
|