mirror of
https://github.com/reactos/reactos.git
synced 2025-01-07 14:51:00 +00:00
BATCH_BUFFSIZE -> 8192.
svn path=/trunk/; revision=38724
This commit is contained in:
parent
db8b3ac429
commit
4e52f2d1e3
1 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ typedef struct tagBATCHCONTEXT
|
|||
TCHAR BatchFilePath[MAX_PATH];
|
||||
LPTSTR forproto;
|
||||
LPTSTR params;
|
||||
LPTSTR raw_params; /* Holds the raw params given by the input */
|
||||
LPTSTR raw_params; /* Holds the raw params given by the input */
|
||||
INT shiftlevel;
|
||||
BOOL bEcho; /* Preserve echo flag across batch calls */
|
||||
HANDLE hFind; /* Preserve find handle when doing a for */
|
||||
|
@ -31,7 +31,7 @@ extern LPBATCH_CONTEXT bc;
|
|||
|
||||
extern BOOL bEcho; /* The echo flag */
|
||||
|
||||
#define BATCH_BUFFSIZE 2048
|
||||
#define BATCH_BUFFSIZE 8192
|
||||
|
||||
extern TCHAR textline[BATCH_BUFFSIZE]; /* Buffer for reading Batch file lines */
|
||||
|
||||
|
|
Loading…
Reference in a new issue