Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'include/shell.h')
-rw-r--r--include/shell.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/shell.h b/include/shell.h
index 58afb82ff..56d0d7a4f 100644
--- a/include/shell.h
+++ b/include/shell.h
@@ -62,6 +62,7 @@ public:
};
class AutoexecEditor;
+class MoreOutputStrings;
struct SHELL_Cmd {
void (DOS_Shell::*handler)(char *args) = nullptr; // Handler for this command
@@ -72,7 +73,7 @@ struct SHELL_Cmd {
class DOS_Shell : public Program {
private:
- void PrintHelpForCommands(HELP_Filter req_filter);
+ void PrintHelpForCommands(MoreOutputStrings &output, HELP_Filter req_filter);
void AddShellCmdsToHelpList();
bool WriteHelp(const std::string &command, char* args);