SetThreadToken.3w

Langue: en

Version: Jun 2009 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

SetThreadToken (ADVAPI32.@)

SYNOPSIS

BOOL SetThreadToken
 (
  PHANDLE thread,
  HANDLE  token
 )

DESCRIPTION

Assigns an 'impersonation token' to a thread so it can assume the security privileges of another thread or process. Can also remove a previously assigned token.

PARAMS

thread [Out] Handle to thread to set the token for.

token [In] Token to set.

RETURNS

Success: TRUE. The threads access token is set to token

Failure: FALSE.

NOTES

Only supported on NT or higher. On Win9X this function does nothing. See SetTokenInformation(3w).

IMPLEMENTATION

Defined in "winbase.h".

Implemented in "dlls/advapi32/security.c".

Debug channel "advapi".