Source code of Windows XP (NT5)
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

  1. #ifndef _LSASTR_H
  2. #define _LSASTR_H
  3. /*++
  4. Copyright (c) 1999 Microsoft Corporation
  5. Module Name:
  6. lsastr.h
  7. Abstract:
  8. Common string operations.
  9. Author:
  10. 24-March-1999 kumarp
  11. --*/
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. VOID
  16. LsapTruncateUnicodeString(
  17. IN OUT PUNICODE_STRING String,
  18. IN USHORT TruncateToNumChars);
  19. BOOLEAN
  20. LsapRemoveTrailingDot(
  21. IN OUT PUNICODE_STRING String,
  22. IN BOOLEAN AdjustLengthOnly);
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. #endif // _LSASTR_H