cmd: Make some variables static.
This commit is contained in:
parent
6df92c11ca
commit
9bf515974d
|
@ -45,7 +45,7 @@ static void WCMD_part_execute(CMD_LIST **commands, const WCHAR *firstcmd,
|
||||||
const WCHAR *variable, const WCHAR *value,
|
const WCHAR *variable, const WCHAR *value,
|
||||||
BOOL isIF, BOOL conditionTRUE);
|
BOOL isIF, BOOL conditionTRUE);
|
||||||
|
|
||||||
struct env_stack *saved_environment;
|
static struct env_stack *saved_environment;
|
||||||
struct env_stack *pushd_directories;
|
struct env_stack *pushd_directories;
|
||||||
|
|
||||||
extern HINSTANCE hinst;
|
extern HINSTANCE hinst;
|
||||||
|
|
|
@ -99,7 +99,7 @@ extern struct env_stack *pushd_directories;
|
||||||
static const WCHAR *pagedMessage = NULL;
|
static const WCHAR *pagedMessage = NULL;
|
||||||
static char *output_bufA = NULL;
|
static char *output_bufA = NULL;
|
||||||
#define MAX_WRITECONSOLE_SIZE 65535
|
#define MAX_WRITECONSOLE_SIZE 65535
|
||||||
BOOL unicodePipes = FALSE;
|
static BOOL unicodePipes = FALSE;
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************
|
/*******************************************************************
|
||||||
|
|
Loading…
Reference in New Issue