1
0
Fork 0

Add an noautoexec switch (RFE: 1215226). And made echo off skip the internal SET lines of dosbox as well. (RFE/PATCH: 1258897)

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2428
This commit is contained in:
Peter Veenstra 2006-01-12 10:20:20 +00:00
parent 92203e9c1a
commit afb9e84c53
3 changed files with 59 additions and 40 deletions

View file

@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: shell.h,v 1.13 2005-08-22 19:31:26 qbix79 Exp $ */
/* $Id: shell.h,v 1.14 2006-01-12 10:20:20 qbix79 Exp $ */
#ifndef DOSBOX_SHELL_H
#define DOSBOX_SHELL_H
@ -155,7 +155,10 @@ private:
public:
AutoexecObject():installed(false){};
void Install(char * line,...);
void InstallBefore(char* line, ...);
~AutoexecObject();
private:
void CreateAutoexec(void);
};
#endif