Skip to content

Instantly share code, notes, and snippets.

@mesaleh
Last active August 29, 2015 14:19
Show Gist options
  • Save mesaleh/a63d494efb9fdb718747 to your computer and use it in GitHub Desktop.
Save mesaleh/a63d494efb9fdb718747 to your computer and use it in GitHub Desktop.
STRING structure
typedef struct _STRING {
USHORT Length;
USHORT MaximumLength;
PCHAR Buffer;
} STRING, OEM_STRING, *PSTRING;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment