private-main.h 417 B

1234567891011121314151617
  1. #ifndef APT_PRIVATE_MAIN_H
  2. #define APT_PRIVATE_MAIN_H
  3. #include <apt-private/private-cmndline.h>
  4. #include <apt-pkg/macros.h>
  5. class CommandLine;
  6. void InitLocale(APT_CMD const binary);
  7. APT_PUBLIC APT_DEPRECATED_MSG("Is a no-op now") void InitLocale();
  8. APT_PUBLIC void InitSignals();
  9. APT_PUBLIC void CheckIfSimulateMode(CommandLine &CmdL);
  10. APT_PUBLIC void CheckIfCalledByScript(int argc, const char *argv[]);
  11. #endif