mirror of
https://github.com/reactos/reactos.git
synced 2025-05-19 00:54:18 +00:00
[MSGINA] Close the user token in WlxLogoff
This commit is contained in:
parent
c98b8dc98c
commit
bab4d87ac8
2 changed files with 18 additions and 13 deletions
|
@ -1012,6 +1012,24 @@ WlxIsLogoffOk(
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
|
VOID WINAPI
|
||||||
|
WlxLogoff(
|
||||||
|
PVOID pWlxContext)
|
||||||
|
{
|
||||||
|
PGINA_CONTEXT pgContext = (PGINA_CONTEXT)pWlxContext;
|
||||||
|
|
||||||
|
TRACE("WlxLogoff(%p)\n", pWlxContext);
|
||||||
|
|
||||||
|
/* Close the user token */
|
||||||
|
CloseHandle(pgContext->UserToken);
|
||||||
|
pgContext->UserToken = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
BOOL WINAPI
|
BOOL WINAPI
|
||||||
DllMain(
|
DllMain(
|
||||||
IN HINSTANCE hinstDLL,
|
IN HINSTANCE hinstDLL,
|
||||||
|
|
|
@ -25,19 +25,6 @@ WlxIsLockOk(
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* @unimplemented
|
|
||||||
*/
|
|
||||||
VOID WINAPI
|
|
||||||
WlxLogoff(
|
|
||||||
PVOID pWlxContext)
|
|
||||||
{
|
|
||||||
UNREFERENCED_PARAMETER(pWlxContext);
|
|
||||||
|
|
||||||
UNIMPLEMENTED;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @unimplemented
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue