mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 16:20:37 +00:00
29fa274d6d
- TSVN choked repeatedly when attempting to merge ~9000 revs into the branch (tried 3 times on 2 different computers) - If someone wants to delete aicom-network-fixes, they are welcome to - Lesson learned: Letting a branch get thousands of revs out of date is a horrible idea svn path=/branches/aicom-network-branch/; revision=44353
65 lines
2 KiB
C
65 lines
2 KiB
C
/*
|
|
* PROJECT: ReactOS Session Manager
|
|
* LICENSE: GPL v2 or later - See COPYING in the top level directory
|
|
* FILE: base/system/smss/init.c
|
|
* PURPOSE: Initialization.
|
|
* PROGRAMMERS: ReactOS Development Team
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
#include "smss.h"
|
|
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
|
|
/* FUNCTIONS ****************************************************************/
|
|
|
|
typedef NTSTATUS (* SM_INIT_ROUTINE)(VOID);
|
|
|
|
struct {
|
|
BOOL Required;
|
|
SM_INIT_ROUTINE EntryPoint;
|
|
PCHAR ErrorMessage;
|
|
} InitRoutine [] = {
|
|
{TRUE, SmCreateHeap, "create private heap, aborting"},
|
|
{TRUE, SmCreateObjectDirectories, "create object directories"},
|
|
{TRUE, SmCreateApiPort, "create \\SmApiPort"},
|
|
{TRUE, SmCreateEnvironment, "create the system environment"},
|
|
{TRUE, SmSetEnvironmentVariables, "set system environment variables"},
|
|
{TRUE, SmInitDosDevices, "create dos device links"},
|
|
{TRUE, SmRunBootApplications, "run boot applications"},
|
|
{TRUE, SmProcessFileRenameList, "process the file rename list"},
|
|
{FALSE, SmLoadKnownDlls, "preload system DLLs"},
|
|
{TRUE, SmCreatePagingFiles, "create paging files"},
|
|
{TRUE, SmInitializeRegistry, "initialize the registry"},
|
|
{FALSE, SmUpdateEnvironment, "update environment variables"},
|
|
{TRUE, SmInitializeClientManagement, "initialize client management"},
|
|
{TRUE, SmLoadSubsystems, "load subsystems"}
|
|
};
|
|
|
|
NTSTATUS
|
|
InitSessionManager(VOID)
|
|
{
|
|
UINT i = 0;
|
|
NTSTATUS Status = STATUS_SUCCESS;
|
|
|
|
for (i=0; i < (sizeof InitRoutine / sizeof InitRoutine[0]); i++)
|
|
{
|
|
Status = InitRoutine[i].EntryPoint();
|
|
if(!NT_SUCCESS(Status))
|
|
{
|
|
DPRINT1("SM: %s: failed to %s (Status=%lx)\n",
|
|
__FUNCTION__,
|
|
InitRoutine[i].ErrorMessage,
|
|
Status);
|
|
if (InitRoutine[i].Required)
|
|
{
|
|
return(Status);
|
|
}
|
|
}
|
|
}
|
|
return(STATUS_SUCCESS);
|
|
}
|
|
|
|
/* EOF */
|