Re: ADVAPI32: implement SetThreadToken using NtSetInformationThread
13 Aug
2004
13 Aug
'04
5:39 a.m.
"Mike McCormack" <mike(a)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.
7881
Age (days ago)
7881
Last active (days ago)
0 comments
1 participants
participants (1)
-
Dmitry Timoshkov