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.
|
|
//+-----------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (c) Microsoft Corporation 1992 - 1997
//
// File: transit.h
//
// Contents: Prototypes for transited realm encoding
//
//
// History: 2-April-1997 MikeSw Created
//
//------------------------------------------------------------------------
#ifndef __TRANSIT_H__
#define __TRANSIT_H__
KERBERR KdcInsertTransitedRealm( OUT PUNICODE_STRING NewTransitedField, IN PUNICODE_STRING OldTransitedField, IN PUNICODE_STRING ClientRealm, IN PUNICODE_STRING TransitedRealm, IN PUNICODE_STRING OurRealm );
KERBERR KdcExpandTransitedRealms( OUT PUNICODE_STRING * FullRealmList, OUT PULONG CountOfRealms, IN PUNICODE_STRING TransitedList );
#endif // __TRANSIT_H__
|