mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 06:52:56 +00:00
[FORMATTING]
- Fix indentation. No code changes. svn path=/trunk/; revision=45364
This commit is contained in:
parent
da2a2649db
commit
661d200caa
1 changed files with 25 additions and 26 deletions
|
@ -37,43 +37,42 @@
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
|
|
||||||
INT WINAPI
|
INT WINAPI
|
||||||
wWinMain(
|
wWinMain(IN HINSTANCE hInstance,
|
||||||
IN HINSTANCE hInstance,
|
IN HINSTANCE hPrevInstance,
|
||||||
IN HINSTANCE hPrevInstance,
|
IN LPWSTR lpCmdLine,
|
||||||
IN LPWSTR lpCmdLine,
|
IN INT nShowCmd)
|
||||||
IN INT nShowCmd)
|
|
||||||
{
|
{
|
||||||
NTSTATUS Status = STATUS_SUCCESS;
|
NTSTATUS Status = STATUS_SUCCESS;
|
||||||
|
|
||||||
DPRINT("Local Security Authority Subsystem\n");
|
DPRINT("Local Security Authority Subsystem\n");
|
||||||
DPRINT(" Initializing...\n");
|
DPRINT(" Initializing...\n");
|
||||||
|
|
||||||
/* Initialize the LSA server DLL. */
|
/* Initialize the LSA server DLL. */
|
||||||
Status = LsapInitLsa();
|
Status = LsapInitLsa();
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
DPRINT1("LsapInitLsa() failed (Status 0x%08lX)\n", Status);
|
DPRINT1("LsapInitLsa() failed (Status 0x%08lX)\n", Status);
|
||||||
goto ByeBye;
|
goto ByeBye;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
/* Initialize the SAM server DLL. */
|
/* Initialize the SAM server DLL. */
|
||||||
Status = SamIInitialize();
|
Status = SamIInitialize();
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
DPRINT1("SamIInitialize() failed (Status 0x%08lX)\n", Status);
|
DPRINT1("SamIInitialize() failed (Status 0x%08lX)\n", Status);
|
||||||
goto ByeBye;
|
goto ByeBye;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* FIXME: More initialization */
|
/* FIXME: More initialization */
|
||||||
|
|
||||||
DPRINT(" Done...\n");
|
DPRINT(" Done...\n");
|
||||||
|
|
||||||
ByeBye:
|
ByeBye:
|
||||||
NtTerminateThread(NtCurrentThread(), Status);
|
NtTerminateThread(NtCurrentThread(), Status);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue