Source code of Windows XP (NT5)
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.

52 lines
934 B

  1. //+-----------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (c) Microsoft Corporation 2000
  6. //
  7. // File: kerbs4u.h
  8. //
  9. // Contents: Structures and prototyps for Service4User protocol
  10. //
  11. //
  12. // History: 13 - March - 2000 Created Todds
  13. //
  14. //------------------------------------------------------------------------
  15. #ifndef __KERBS4U_H__
  16. #define __KERBS4U_H__
  17. NTSTATUS
  18. KerbS4UToSelfLogon(
  19. IN PVOID ProtocolSubmitBuffer,
  20. IN PVOID ClientBufferBase,
  21. IN ULONG SubmitBufferSize,
  22. OUT PKERB_LOGON_SESSION * NewLogonSession,
  23. OUT PLUID LogonId,
  24. OUT PKERB_TICKET_CACHE_ENTRY * WorkstationTicket,
  25. OUT PKERB_INTERNAL_NAME * S4UClientName,
  26. OUT PUNICODE_STRING S4UClientRealm
  27. );
  28. #endif // __KERBS4U_H__