mirror of
https://github.com/reactos/reactos.git
synced 2025-05-16 15:50:24 +00:00
Moved shared define to header file
Patch by Marc Piulachs, marc (dot) piulachs (at) codexchange.net See issue #2700 for more details. svn path=/trunk/; revision=29279
This commit is contained in:
parent
22006f87c9
commit
ae56de4440
2 changed files with 4 additions and 4 deletions
|
@ -47,6 +47,9 @@
|
|||
/* command line buffer length */
|
||||
#define CMDLINE_LENGTH 8192
|
||||
|
||||
/* 16k = max buffer size */
|
||||
#define BUFF_SIZE 16384
|
||||
|
||||
/* global variables */
|
||||
extern HANDLE hOut;
|
||||
extern HANDLE hIn;
|
||||
|
|
|
@ -46,10 +46,7 @@ enum
|
|||
COPY_RESTART = 0x080, /* /Z */
|
||||
COPY_BINARY = 0x100, /* /B */
|
||||
};
|
||||
|
||||
#define BUFF_SIZE 16384 /* 16k = max buffer size */
|
||||
|
||||
|
||||
|
||||
INT
|
||||
copy (TCHAR source[MAX_PATH],
|
||||
TCHAR dest[MAX_PATH],
|
||||
|
|
Loading…
Reference in a new issue