mirror of
https://github.com/reactos/reactos.git
synced 2024-12-31 19:42:51 +00:00
[KERNEL32]: Implement BaseProcessInitPostImport. Windows NTDLL now loads much, much further, all the way to lsass.exe now.
svn path=/trunk/; revision=59865
This commit is contained in:
parent
3be526a895
commit
34287c50dc
1 changed files with 17 additions and 1 deletions
|
@ -13,6 +13,14 @@
|
|||
|
||||
/* FUNCTIONS ****************************************************************/
|
||||
|
||||
NTSTATUS
|
||||
WINAPI
|
||||
BasepInitializeTermsrvFpns(VOID)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
DWORD
|
||||
WINAPI
|
||||
BasepGetModuleHandleExParameterValidation(DWORD dwFlags,
|
||||
|
@ -1125,12 +1133,20 @@ BaseQueryModuleData(IN LPSTR ModuleName,
|
|||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
NTSTATUS
|
||||
WINAPI
|
||||
BaseProcessInitPostImport(VOID)
|
||||
{
|
||||
/* Check if this is a terminal server */
|
||||
DPRINT1("Post-init called\n");
|
||||
if (SharedUserData->SuiteMask & VER_SUITE_TERMINAL)
|
||||
{
|
||||
/* Initialize TS pointers */
|
||||
return BasepInitializeTermsrvFpns();
|
||||
}
|
||||
|
||||
/* FIXME: Initialize TS pointers */
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue