From 02b9f5de3e11b75f85d9bfd4a36844ba68dafb99 Mon Sep 17 00:00:00 2001 From: vxunderground <57078196+vxunderground@users.noreply.github.com> Date: Thu, 14 Jul 2022 23:23:13 -0500 Subject: [PATCH] Create ANSI_STRING.h --- Structures/ANSI_STRING.h | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Structures/ANSI_STRING.h diff --git a/Structures/ANSI_STRING.h b/Structures/ANSI_STRING.h new file mode 100644 index 0000000..5b87b5d --- /dev/null +++ b/Structures/ANSI_STRING.h @@ -0,0 +1,5 @@ +typedef struct _STRING { + USHORT Length; + USHORT MaximumLength; + PCHAR Buffer; +} ANSI_STRING, * PANSI_STRING;