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

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1998 - 1999
  6. //
  7. // File: usertok.idl
  8. //
  9. //--------------------------------------------------------------------------
  10. [
  11. uuid(a002b3a0-c9b7-11d1-ae88-0080c75e4ec1),
  12. version(1.0),
  13. endpoint("ncacn_np:[\\pipe\\winlogonrpc]")
  14. ]
  15. interface GetUserToken
  16. {
  17. error_status_t
  18. SecpGetCurrentUserToken(
  19. [in] handle_t Binding,
  20. [in, string, unique] wchar_t Desktop[],
  21. [in] unsigned long ProcessId,
  22. [out] unsigned long * Token,
  23. [in] unsigned long DesiredAccess
  24. );
  25. }