mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[FORMATTING] Fix tabs/spaces mess
svn path=/trunk/; revision=31448
This commit is contained in:
parent
0f74061681
commit
361a5b6d9f
1 changed files with 60 additions and 61 deletions
|
@ -1,5 +1,4 @@
|
||||||
/* $Id$
|
/*
|
||||||
*
|
|
||||||
* initenv.c - Environment initialization
|
* initenv.c - Environment initialization
|
||||||
*
|
*
|
||||||
* ReactOS Operating System
|
* ReactOS Operating System
|
||||||
|
@ -39,91 +38,91 @@ PWSTR SmSystemEnvironment = NULL;
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
SmCreateEnvironment(VOID)
|
SmCreateEnvironment(VOID)
|
||||||
{
|
{
|
||||||
return RtlCreateEnvironment(FALSE, &SmSystemEnvironment);
|
return RtlCreateEnvironment(FALSE, &SmSystemEnvironment);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static NTSTATUS
|
static NTSTATUS
|
||||||
SmpSetEnvironmentVariable(PVOID Context,
|
SmpSetEnvironmentVariable(IN PVOID Context,
|
||||||
PWSTR ValueName,
|
IN PWSTR ValueName,
|
||||||
PVOID ValueData)
|
IN PVOID ValueData)
|
||||||
{
|
{
|
||||||
UNICODE_STRING EnvVariable;
|
UNICODE_STRING EnvVariable;
|
||||||
UNICODE_STRING EnvValue;
|
UNICODE_STRING EnvValue;
|
||||||
|
|
||||||
RtlInitUnicodeString(&EnvVariable,
|
RtlInitUnicodeString(&EnvVariable,
|
||||||
ValueName);
|
ValueName);
|
||||||
RtlInitUnicodeString(&EnvValue,
|
RtlInitUnicodeString(&EnvValue,
|
||||||
(PWSTR)ValueData);
|
(PWSTR)ValueData);
|
||||||
RtlSetEnvironmentVariable(Context,
|
RtlSetEnvironmentVariable(Context,
|
||||||
&EnvVariable,
|
&EnvVariable,
|
||||||
&EnvValue);
|
&EnvValue);
|
||||||
|
|
||||||
return(STATUS_SUCCESS);
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static NTSTATUS STDCALL
|
static NTSTATUS STDCALL
|
||||||
SmpEnvironmentQueryRoutine(PWSTR ValueName,
|
SmpEnvironmentQueryRoutine(IN PWSTR ValueName,
|
||||||
ULONG ValueType,
|
IN ULONG ValueType,
|
||||||
PVOID ValueData,
|
IN PVOID ValueData,
|
||||||
ULONG ValueLength,
|
IN ULONG ValueLength,
|
||||||
PVOID Context,
|
IN PVOID Context,
|
||||||
PVOID EntryContext)
|
IN PVOID EntryContext)
|
||||||
{
|
{
|
||||||
DPRINT("ValueName '%S' Type %lu Length %lu\n", ValueName, ValueType, ValueLength);
|
DPRINT("ValueName '%S' Type %lu Length %lu\n", ValueName, ValueType, ValueLength);
|
||||||
DPRINT("ValueData '%S'\n", (PWSTR)ValueData);
|
DPRINT("ValueData '%S'\n", (PWSTR)ValueData);
|
||||||
|
|
||||||
if (ValueType != REG_SZ)
|
if (ValueType != REG_SZ)
|
||||||
{
|
return STATUS_SUCCESS;
|
||||||
return(STATUS_SUCCESS);
|
|
||||||
}
|
|
||||||
return SmpSetEnvironmentVariable(Context,ValueName,ValueData);
|
return SmpSetEnvironmentVariable(Context,ValueName,ValueData);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
SmSetEnvironmentVariables(VOID)
|
SmSetEnvironmentVariables(VOID)
|
||||||
{
|
{
|
||||||
RTL_QUERY_REGISTRY_TABLE QueryTable[2];
|
RTL_QUERY_REGISTRY_TABLE QueryTable[2];
|
||||||
WCHAR ValueBuffer[MAX_PATH];
|
WCHAR ValueBuffer[MAX_PATH];
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The following environment variables must be set prior to reading
|
* The following environment variables must be set prior to reading
|
||||||
* other variables from the registry.
|
* other variables from the registry.
|
||||||
*
|
*
|
||||||
* Variables (example):
|
* Variables (example):
|
||||||
* SystemRoot = "C:\reactos"
|
* SystemRoot = "C:\reactos"
|
||||||
* SystemDrive = "C:"
|
* SystemDrive = "C:"
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Copy system root into value buffer */
|
/* Copy system root into value buffer */
|
||||||
wcscpy(ValueBuffer,
|
wcscpy(ValueBuffer,
|
||||||
SharedUserData->NtSystemRoot);
|
SharedUserData->NtSystemRoot);
|
||||||
|
|
||||||
/* Set SystemRoot = "C:\reactos" */
|
/* Set SystemRoot = "C:\reactos" */
|
||||||
SmpSetEnvironmentVariable(&SmSystemEnvironment,L"SystemRoot",ValueBuffer);
|
SmpSetEnvironmentVariable(&SmSystemEnvironment, L"SystemRoot", ValueBuffer);
|
||||||
|
|
||||||
/* Cut off trailing path */
|
/* Cut off trailing path */
|
||||||
ValueBuffer[2] = 0;
|
ValueBuffer[2] = 0;
|
||||||
|
|
||||||
/* Set SystemDrive = "C:" */
|
/* Set SystemDrive = "C:" */
|
||||||
SmpSetEnvironmentVariable(&SmSystemEnvironment,L"SystemDrive",ValueBuffer);
|
SmpSetEnvironmentVariable(&SmSystemEnvironment, L"SystemDrive", ValueBuffer);
|
||||||
|
|
||||||
/* Read system environment from the registry. */
|
/* Read system environment from the registry. */
|
||||||
RtlZeroMemory(&QueryTable,
|
RtlZeroMemory(&QueryTable,
|
||||||
sizeof(QueryTable));
|
sizeof(QueryTable));
|
||||||
|
|
||||||
QueryTable[0].QueryRoutine = SmpEnvironmentQueryRoutine;
|
QueryTable[0].QueryRoutine = SmpEnvironmentQueryRoutine;
|
||||||
|
|
||||||
Status = RtlQueryRegistryValues(RTL_REGISTRY_CONTROL,
|
Status = RtlQueryRegistryValues(RTL_REGISTRY_CONTROL,
|
||||||
L"\\Session Manager\\Environment",
|
L"Session Manager\\Environment",
|
||||||
QueryTable,
|
QueryTable,
|
||||||
&SmSystemEnvironment,
|
&SmSystemEnvironment,
|
||||||
SmSystemEnvironment);
|
SmSystemEnvironment);
|
||||||
|
|
||||||
return(Status);
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
@ -132,8 +131,8 @@ SmSetEnvironmentVariables(VOID)
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
SmUpdateEnvironment(VOID)
|
SmUpdateEnvironment(VOID)
|
||||||
{
|
{
|
||||||
/* TODO */
|
/* TODO */
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
Loading…
Reference in a new issue