mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[USETUP] Mark some variables as 'static'.
svn path=/branches/setup_improvements/; revision=75161
This commit is contained in:
parent
455e69a011
commit
b20908acc8
1 changed files with 7 additions and 5 deletions
|
@ -45,9 +45,11 @@
|
|||
/* GLOBALS ******************************************************************/
|
||||
|
||||
HANDLE ProcessHeap;
|
||||
|
||||
static UNICODE_STRING SourceRootPath;
|
||||
static UNICODE_STRING SourceRootDir;
|
||||
/* static */ UNICODE_STRING SourcePath;
|
||||
|
||||
BOOLEAN IsUnattendedSetup = FALSE;
|
||||
LONG UnattendDestinationDiskNumber;
|
||||
LONG UnattendDestinationPartitionNumber;
|
||||
|
@ -59,12 +61,12 @@ PWCHAR SelectedLanguageId;
|
|||
WCHAR LocaleID[9];
|
||||
WCHAR DefaultLanguage[20];
|
||||
WCHAR DefaultKBLayout[20];
|
||||
BOOLEAN RepairUpdateFlag = FALSE;
|
||||
HANDLE hPnpThread = INVALID_HANDLE_VALUE;
|
||||
static BOOLEAN RepairUpdateFlag = FALSE;
|
||||
static HANDLE hPnpThread = INVALID_HANDLE_VALUE;
|
||||
|
||||
PPARTLIST PartitionList = NULL;
|
||||
PPARTENTRY TempPartition = NULL;
|
||||
FORMATMACHINESTATE FormatState = Start;
|
||||
static PPARTLIST PartitionList = NULL;
|
||||
static PPARTENTRY TempPartition = NULL;
|
||||
static FORMATMACHINESTATE FormatState = Start;
|
||||
|
||||
|
||||
/* LOCALS *******************************************************************/
|
||||
|
|
Loading…
Reference in a new issue