blob: db6d3e0b7011bfce1f76a4f44fb4d9fcc57c791e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef APT_PRIVATE_MAIN_H
#define APT_PRIVATE_MAIN_H
#include <apt-pkg/macros.h>
class CommandLine;
APT_PUBLIC void InitLocale();
APT_PUBLIC void InitSignals();
APT_PUBLIC void CheckIfSimulateMode(CommandLine &CmdL);
APT_PUBLIC void CheckIfCalledByScript(int argc, const char *argv[]);
#endif
|