From 43abd3f1e4af8c82ba0982f97f562b4901632064 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Mon, 8 Sep 2003 18:17:23 +0000 Subject: [PATCH] Added the Call command Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1234 --- src/shell/shell_inc.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/shell/shell_inc.h b/src/shell/shell_inc.h index a09fd9fe..4dc1f73b 100644 --- a/src/shell/shell_inc.h +++ b/src/shell/shell_inc.h @@ -60,7 +60,7 @@ private: char *completion_start; Bit16u completion_index; - + public: DOS_Shell(); @@ -93,6 +93,7 @@ public: void CMD_TYPE(char * args); void CMD_REM(char * args); void CMD_RENAME(char * args); + void CMD_CALL(char * args); void SyntaxError(void); void CMD_PAUSE(char * args); /* The shell's variables */ @@ -100,6 +101,7 @@ public: BatchFile * bf; bool echo; bool exit; + bool call; }; struct SHELL_Cmd {