mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 20:25:39 +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];
|
TCHAR BatchFilePath[MAX_PATH];
|
||||||
LPTSTR forproto;
|
LPTSTR forproto;
|
||||||
LPTSTR params;
|
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;
|
INT shiftlevel;
|
||||||
BOOL bEcho; /* Preserve echo flag across batch calls */
|
BOOL bEcho; /* Preserve echo flag across batch calls */
|
||||||
HANDLE hFind; /* Preserve find handle when doing a for */
|
HANDLE hFind; /* Preserve find handle when doing a for */
|
||||||
|
@ -31,7 +31,7 @@ extern LPBATCH_CONTEXT bc;
|
||||||
|
|
||||||
extern BOOL bEcho; /* The echo flag */
|
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 */
|
extern TCHAR textline[BATCH_BUFFSIZE]; /* Buffer for reading Batch file lines */
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue