mirror of https://github.com/tongzx/nt5src
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.
40 lines
490 B
40 lines
490 B
#ifndef _LSASTR_H
|
|
#define _LSASTR_H
|
|
|
|
/*++
|
|
|
|
Copyright (c) 1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
lsastr.h
|
|
|
|
Abstract:
|
|
|
|
Common string operations.
|
|
|
|
Author:
|
|
|
|
24-March-1999 kumarp
|
|
|
|
--*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
VOID
|
|
LsapTruncateUnicodeString(
|
|
IN OUT PUNICODE_STRING String,
|
|
IN USHORT TruncateToNumChars);
|
|
|
|
BOOLEAN
|
|
LsapRemoveTrailingDot(
|
|
IN OUT PUNICODE_STRING String,
|
|
IN BOOLEAN AdjustLengthOnly);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _LSASTR_H
|