BATCH_BUFFSIZE -> 8192.

svn path=/trunk/; revision=38724
This commit is contained in:
Dmitry Gorbachev 2009-01-12 16:13:06 +00:00
parent db8b3ac429
commit 4e52f2d1e3

View file

@ -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 */