Create ANSI_STRING.h

This commit is contained in:
vxunderground 2022-07-14 23:23:13 -05:00 committed by GitHub
parent a61611cdd9
commit 02b9f5de3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

5
Structures/ANSI_STRING.h Normal file

@ -0,0 +1,5 @@
typedef struct _STRING {
USHORT Length;
USHORT MaximumLength;
PCHAR Buffer;
} ANSI_STRING, * PANSI_STRING;