CString

What is a CString?

A CString is a format used to store the length of a string, then the subsequent string.

Structure

Size Type Name Description
4 UInt32 Length The length of the string, also used as a flag. If Length OR 0x80000000 != 0 is true, the following string is Unicode, otherwise it is ASCII.
...   String The string stored in either unicode or ASCII, the length is Length AND 0x7FFFFFFF