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.

27 lines
725 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. ]
  14. interface GetUserToken
  15. {
  16. error_status_t
  17. SecpGetCurrentUserToken(
  18. [in] handle_t Binding,
  19. [in, string, unique] wchar_t Desktop[],
  20. [out] unsigned long * Token,
  21. [in] unsigned long DesiredAccess
  22. );
  23. }