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.