mirror of
https://github.com/reactos/wine.git
synced 2025-04-03 08:31:55 +00:00
advapi32: Get the token type in ImpersonateLoggedOnUser.
This commit is contained in:
parent
ce58c3589c
commit
409c6dc7b0
@ -1675,13 +1675,16 @@ ImpersonateSelf(SECURITY_IMPERSONATION_LEVEL ImpersonationLevel)
|
||||
*/
|
||||
BOOL WINAPI ImpersonateLoggedOnUser(HANDLE hToken)
|
||||
{
|
||||
DWORD size;
|
||||
NTSTATUS Status;
|
||||
HANDLE ImpersonationToken;
|
||||
TOKEN_TYPE Type = TokenImpersonation;
|
||||
TOKEN_TYPE Type;
|
||||
|
||||
FIXME( "(%p)\n", hToken );
|
||||
|
||||
/* FIXME: get token type */
|
||||
if (!GetTokenInformation( hToken, TokenType, &Type,
|
||||
sizeof(TOKEN_TYPE), &size ))
|
||||
return FALSE;
|
||||
|
||||
if (Type == TokenPrimary)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user