diff --git a/reactos/dll/win32/msgina/msgina.c b/reactos/dll/win32/msgina/msgina.c index d2620475112..9ae65d5091f 100644 --- a/reactos/dll/win32/msgina/msgina.c +++ b/reactos/dll/win32/msgina/msgina.c @@ -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, diff --git a/reactos/dll/win32/msgina/stubs.c b/reactos/dll/win32/msgina/stubs.c index 951380c6764..be4d9d7daa5 100644 --- a/reactos/dll/win32/msgina/stubs.c +++ b/reactos/dll/win32/msgina/stubs.c @@ -67,20 +67,6 @@ WlxIsLockOk( } -/* - * @unimplemented - */ -BOOL WINAPI -WlxIsLogoffOk( - PVOID pWlxContext) -{ - UNREFERENCED_PARAMETER(pWlxContext); - - UNIMPLEMENTED; - return TRUE; -} - - /* * @unimplemented */