Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
837 B

//+-------------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (C) Microsoft Corporation, 1998 - 1999
//
// File: usertok.idl
//
//--------------------------------------------------------------------------
[
uuid(a002b3a0-c9b7-11d1-ae88-0080c75e4ec1),
version(1.0),
endpoint("ncacn_np:[\\pipe\\winlogonrpc]")
]
interface GetUserToken
{
error_status_t
SecpGetCurrentUserToken(
[in] handle_t Binding,
[in, string, unique] wchar_t Desktop[],
[in] unsigned long ProcessId,
[out] unsigned long * Token,
[in] unsigned long DesiredAccess
);
}