1
0
Fork 0

Clean up of the batch file class

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@406
This commit is contained in:
Sjoerd van der Berg 2002-10-24 22:28:33 +00:00
parent e3a5b55666
commit a3badef4e9
2 changed files with 0 additions and 5 deletions

View file

@ -32,7 +32,6 @@ BatchFile::BatchFile(DOS_Shell * host,char * name, char * cmd_line) {
//TODO Come up with something better
E_Exit("SHELL:Can't open BatchFile");
}
line_count=0;
};
BatchFile::~BatchFile() {

View file

@ -40,10 +40,6 @@ public:
bool ReadLine(char * line);
bool Goto(char * where);
Bit16u file_handle;
Bit32u line_count;
char * cmd_words[CMD_MAXCMDS];
char cmd_buffer[128]; //Command line can only be 128 chars
Bit32u cmd_count;
bool echo;
DOS_Shell * shell;
BatchFile * prev;