ntlmutil.h
来自「安全支持提供器接口(SSPI)源码」· C头文件 代码 · 共 64 行
H
64 行
//+-----------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (c) Microsoft Corporation 1992 - 1996
//
// File: ntlmutil.h
//
// Contents: prototypes for NtLm utility functions
//
//
// History: ChandanS 25-Jul-1996 Stolen from kerberos\client2\kerbutil.h
//
//------------------------------------------------------------------------
#ifndef __NTLMUTIL_H__
#define __NTLMUTIL_H__
///////////////////////////////////////////////////////////////////////////////
// //
// Miscellaneous macros //
// //
///////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
extern "C"
{
#endif
NTSTATUS
NtLmDuplicateUnicodeString(
OUT PUNICODE_STRING DestinationString,
IN OPTIONAL PUNICODE_STRING SourceString
);
NTSTATUS
NtLmDuplicateString(
OUT PSTRING DestinationString,
IN OPTIONAL PSTRING SourceString
);
NTSTATUS
NtLmDuplicateSid(
OUT PSID *DestinationSid,
IN PSID SourceSid
);
VOID
NtLmFree(
IN PVOID Buffer
);
PVOID
NtLmAllocate(
IN ULONG BufferSize
);
#ifdef __cplusplus
}
#endif
#endif // __KERBUTIL_H__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?