mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
Reduced command line size in ReactOS mode
svn path=/trunk/; revision=1598
This commit is contained in:
parent
a7772a9954
commit
62d9e11763
1 changed files with 8 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: cmd.h,v 1.20 2000/07/19 06:58:13 ekohl Exp $
|
/* $Id: cmd.h,v 1.21 2001/02/03 10:37:51 ekohl Exp $
|
||||||
*
|
*
|
||||||
* CMD.H - header file for the modules in CMD.EXE
|
* CMD.H - header file for the modules in CMD.EXE
|
||||||
*
|
*
|
||||||
|
@ -65,6 +65,13 @@
|
||||||
#define D_OFF "off"
|
#define D_OFF "off"
|
||||||
|
|
||||||
|
|
||||||
|
/* command line buffer length */
|
||||||
|
#ifdef __REACTOS__
|
||||||
|
#define CMDLINE_LENGTH 512
|
||||||
|
#else
|
||||||
|
#define CMDLINE_LENGTH 8192
|
||||||
|
//#define CMDLINE_LENGTH 1024
|
||||||
|
#endif
|
||||||
|
|
||||||
/* global variables */
|
/* global variables */
|
||||||
extern HANDLE hOut;
|
extern HANDLE hOut;
|
||||||
|
|
Loading…
Reference in a new issue