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.
 
 
 
 
 
 

23 lines
904 B

#pragma once
//-----------------------------------------------------------------------------
// IsCallerDelegatable Function
//
// Synopsis
// If an intra-forest move operation is being performed then verify that the
// calling user's account has not been marked as sensitive and therefore
// cannot be delegated. As the move operation is performed on the domain
// controller which has the RID master role in the source domain it is
// necessary to delegate the user's security context.
//
// Arguments
// bDelegatable - this out parameter is set to true if the account is
// delegatable otherwise it is set to false
//
// Return Value
// The return value is a Win32 error code. ERROR_SUCCESS is returned if
// successful.
//-----------------------------------------------------------------------------
HRESULT __stdcall IsCallerDelegatable(bool& bDelegatable);