mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 20:03:12 +00:00
[MSGINA]
- Call NotifyBootConfigStatus after a user has been logged-on successfully. - Implement WlxIsLogoffOk. svn path=/trunk/; revision=53698
This commit is contained in:
parent
5fe2e119f5
commit
9c8386d2b6
2 changed files with 15 additions and 14 deletions
|
@ -572,6 +572,9 @@ DoAutoLogon(
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
||||||
result = DoLoginTasks(pgContext, UserName, DomainName, Password);
|
result = DoLoginTasks(pgContext, UserName, DomainName, Password);
|
||||||
|
|
||||||
|
if (result == TRUE)
|
||||||
|
NotifyBootConfigStatus(TRUE);
|
||||||
}
|
}
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
|
@ -679,6 +682,18 @@ WlxWkstaLockedSAS(
|
||||||
return pGinaUI->LockedSAS(pgContext);
|
return pGinaUI->LockedSAS(pgContext);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
|
BOOL WINAPI
|
||||||
|
WlxIsLogoffOk(
|
||||||
|
PVOID pWlxContext)
|
||||||
|
{
|
||||||
|
TRACE("WlxIsLogoffOk()\n");
|
||||||
|
UNREFERENCED_PARAMETER(pWlxContext);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
BOOL WINAPI
|
BOOL WINAPI
|
||||||
DllMain(
|
DllMain(
|
||||||
IN HINSTANCE hinstDLL,
|
IN HINSTANCE hinstDLL,
|
||||||
|
|
|
@ -67,20 +67,6 @@ WlxIsLockOk(
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* @unimplemented
|
|
||||||
*/
|
|
||||||
BOOL WINAPI
|
|
||||||
WlxIsLogoffOk(
|
|
||||||
PVOID pWlxContext)
|
|
||||||
{
|
|
||||||
UNREFERENCED_PARAMETER(pWlxContext);
|
|
||||||
|
|
||||||
UNIMPLEMENTED;
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @unimplemented
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue