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.

36 lines
835 B

  1. //+-----------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (c) Microsoft Corporation 1992 - 1997
  6. //
  7. // File: transit.h
  8. //
  9. // Contents: Prototypes for transited realm encoding
  10. //
  11. //
  12. // History: 2-April-1997 MikeSw Created
  13. //
  14. //------------------------------------------------------------------------
  15. #ifndef __TRANSIT_H__
  16. #define __TRANSIT_H__
  17. KERBERR
  18. KdcInsertTransitedRealm(
  19. OUT PUNICODE_STRING NewTransitedField,
  20. IN PUNICODE_STRING OldTransitedField,
  21. IN PUNICODE_STRING ClientRealm,
  22. IN PUNICODE_STRING TransitedRealm,
  23. IN PUNICODE_STRING OurRealm
  24. );
  25. KERBERR
  26. KdcExpandTransitedRealms(
  27. OUT PUNICODE_STRING * FullRealmList,
  28. OUT PULONG CountOfRealms,
  29. IN PUNICODE_STRING TransitedList
  30. );
  31. #endif // __TRANSIT_H__