From 97276ce4ddaeca292a9e5d735b19d50565cef773 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Sun, 25 Nov 2018 23:25:13 -0700 Subject: [PATCH] nt: remove unused LSA_UNICODE_STRING type --- src/nt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nt.h b/src/nt.h index 89c7eac..71ea0fe 100644 --- a/src/nt.h +++ b/src/nt.h @@ -34,11 +34,11 @@ typedef VOID(NTAPI* PIO_APC_ROUTINE)(PVOID ApcContext, PIO_STATUS_BLOCK IoStatusBlock, ULONG Reserved); -typedef struct _LSA_UNICODE_STRING { +typedef struct _UNICODE_STRING { USHORT Length; USHORT MaximumLength; PWSTR Buffer; -} LSA_UNICODE_STRING, *PLSA_UNICODE_STRING, UNICODE_STRING, *PUNICODE_STRING; +} UNICODE_STRING, *PUNICODE_STRING; #define RTL_CONSTANT_STRING(s) \ { sizeof(s) - sizeof((s)[0]), sizeof(s), s }