|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| advapi32.lib
| Header File
| winbase.h
| Unicode
| No
| Platform Notes
| None
|
|
|
SetThreadToken
The SetThreadToken function assigns an impersonation token to a thread. The function can also
cause a thread to stop using an impersonation token.
BOOL SetThreadToken(
PHANDLE Thread,
| // points to a handle to the thread
| HANDLE Token
| // handle to the impersonation token
| );
|
|
Parameters
Thread
Points to a handle to the thread to which the function assigns the
impersonation token.
If Thread is NULL, the function assigns the impersonation token to the calling thread.
Token
An open handle to the impersonation token to assign to the thread. This handle
must have been opened with TOKEN_IMPERSONATE access rights. For more
information, see Access-Token Objects.
If Token is NULL, the function causes the thread to stop using an impersonation token.
Return Values
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error
information, call GetLastError.
See Also
OpenThreadToken
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|