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
);
If Thread is NULL, the function assigns the impersonation token to the calling thread.
If Token is NULL, the function causes the thread to stop using an impersonation token.
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.
Windows NT: Requires version 3.51 or later.
Windows: Unsupported.
Windows CE: Unsupported.
Header: Declared in winbase.h.
Import Library: Use advapi32.lib.
Access Control Overview, Access Control Functions, OpenThreadToken