X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/6079b276a959086ff18302cab752b6d7cfe5ad9f..0a778f71f935900ff8a90a958f0e7da700d84f9f:/apt-private/private-cmndline.h diff --git a/apt-private/private-cmndline.h b/apt-private/private-cmndline.h index ac17e2e8a..05690964d 100644 --- a/apt-private/private-cmndline.h +++ b/apt-private/private-cmndline.h @@ -23,17 +23,18 @@ enum class APT_CMD { APT_SORTPKG, }; +APT_PUBLIC bool ShowHelp(CommandLine &CmdL) APT_WEAK; struct aptDispatchWithHelp { const char *Match; bool (*Handler)(CommandLine &); const char *Help; }; -std::vector GetCommands(); -bool ShowHelp(CommandLine &CmdL, aptDispatchWithHelp const * Cmds); +APT_PUBLIC std::vector GetCommands() APT_WEAK; APT_PUBLIC std::vector ParseCommandLine(CommandLine &CmdL, APT_CMD const Binary, - Configuration * const * const Cnf, pkgSystem ** const Sys, int const argc, const char * argv[]); + Configuration * const * const Cnf, pkgSystem ** const Sys, int const argc, const char * argv[], + bool (*ShowHelp)(CommandLine &), std::vector (*GetCommands)(void)); APT_PUBLIC unsigned short DispatchCommandLine(CommandLine &CmdL, std::vector const &Cmds); APT_PUBLIC std::vector getCommandArgs(APT_CMD const Program, char const * const Cmd);