Scroll to navigation

SetTokenInformation(3w) Wine API SetTokenInformation(3w)

NAME

SetTokenInformation (ADVAPI32.@)

SYNOPSIS

BOOL SetTokenInformation
(
HANDLE token,
TOKEN_INFORMATION_CLASS tokeninfoclass,
LPVOID tokeninfo,
DWORD tokeninfolength
)
 

DESCRIPTION

Set information for an access token.
 

PARAMS

token [In] Handle from OpenProcessToken(3w) or OpenThreadToken(3w).
tokeninfoclass [In] A TOKEN_INFORMATION_CLASS from "winnt.h".
tokeninfo [In] Token information to set.
tokeninfolength [In] Length of tokeninfo.
 

RETURNS

Success: TRUE. The information for the token is set to tokeninfo.
Failure: FALSE.
 

IMPLEMENTATION

Declared in "winbase.h".
Implemented in "dlls/advapi32/security.c".
Debug channel "advapi".
Oct 2012 Wine API