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