ADVAPI32: implement SetThreadToken using NtSetInformationThread

Dmitry Timoshkov dmitry at baikal.ru
Fri Aug 13 05:39:14 CDT 2004


"Mike McCormack" <mike at codeweavers.com> wrote:

> @@ -545,6 +545,12 @@
>      case ThreadBasePriority:
>      case ThreadAffinityMask:
>      case ThreadImpersonationToken:
> +        {
> +            const HANDLE *phToken = data;
> +            if (length != sizeof(HANDLE)) return STATUS_INVALID_PARAMETER;
> +            FIXME("Set ThreadImpersonationToken handle to %p\n", *phToken );
> +            return STATUS_SUCCESS;
> +        }

Probably ThreadImpersonationToken handling should be isolated from
other thread class identifiers otherwise FIXME will be printed for
all them as well.

-- 
Dmitry.




More information about the wine-devel mailing list