miscapi.cxx
来自「安全支持提供器接口(SSPI)源码」· CXX 代码 · 共 37 行
CXX
37 行
//+-----------------------------------------------------------------------
//
// 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"));
// BUGBUG Fields of UserData are logonid & flags. WHAT??
UNREFERENCED_PARAMETER(LogonId);
UNREFERENCED_PARAMETER(Flags);
UNREFERENCED_PARAMETER(UserData);
SspPrint((SSP_API, "Leaving SpGetUserInfo\n"));
return(STATUS_NOT_SUPPORTED);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?