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.
 
 
 
 
 
 

35 lines
923 B

//+-----------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (c) Microsoft Corporation 1992 - 1996
//
// File: miscapi.cxx
//
// Contents: Code for miscellaneous lsa mode NtLm entrypoints
// Main entry points in the dll:
// SpGetUserInfo
//
//
// History: ChandanS 26-Jul-1996 Stolen from kerberos\client2\miscapi.cxx
//
//------------------------------------------------------------------------
#include <global.h>
NTSTATUS NTAPI
SpGetUserInfo(
IN PLUID LogonId,
IN ULONG Flags,
OUT PSecurityUserData * UserData
)
{
SspPrint((SSP_API, "Entering SpGetUserInfo\n"));
UNREFERENCED_PARAMETER(LogonId);
UNREFERENCED_PARAMETER(Flags);
UNREFERENCED_PARAMETER(UserData);
SspPrint((SSP_API, "Leaving SpGetUserInfo\n"));
return(STATUS_NOT_SUPPORTED);
}