- Call NotifyBootConfigStatus after a user has been logged-on successfully.
- Implement WlxIsLogoffOk.

svn path=/trunk/; revision=53698
This commit is contained in:
Eric Kohl 2011-09-13 09:42:25 +00:00
parent 5fe2e119f5
commit 9c8386d2b6
2 changed files with 15 additions and 14 deletions

View file

@ -572,6 +572,9 @@ DoAutoLogon(
goto cleanup;
result = DoLoginTasks(pgContext, UserName, DomainName, Password);
if (result == TRUE)
NotifyBootConfigStatus(TRUE);
}
cleanup:
@ -679,6 +682,18 @@ WlxWkstaLockedSAS(
return pGinaUI->LockedSAS(pgContext);
}
/*
* @implemented
*/
BOOL WINAPI
WlxIsLogoffOk(
PVOID pWlxContext)
{
TRACE("WlxIsLogoffOk()\n");
UNREFERENCED_PARAMETER(pWlxContext);
return TRUE;
}
BOOL WINAPI
DllMain(
IN HINSTANCE hinstDLL,

View file

@ -67,20 +67,6 @@ WlxIsLockOk(
}
/*
* @unimplemented
*/
BOOL WINAPI
WlxIsLogoffOk(
PVOID pWlxContext)
{
UNREFERENCED_PARAMETER(pWlxContext);
UNIMPLEMENTED;
return TRUE;
}
/*
* @unimplemented
*/