private-download.h 324 B

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