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;