blob: a108aa531bcd967e6620013aa99145d5e94a2552 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef APT_PRIVATE_DOWNLOAD_H
#define APT_PRIVATE_DOWNLOAD_H
#include <apt-pkg/macros.h>
class pkgAcquire;
APT_PUBLIC bool CheckAuth(pkgAcquire& Fetcher, bool const PromptUser);
APT_PUBLIC bool AcquireRun(pkgAcquire &Fetcher, int const PulseInterval, bool * const Failure, bool * const TransientNetworkFailure);
#endif
|