|
|
a basic string type that is simply another method for storing character string information (different than a NULL-terminated ASCII string)
a counted string, a wide-character (Unicode) string on Intel platforms and can contain embedded NUL characters
a pointer to a null-terminated character string in which the string length is stored with the string
a pointer to a separately allocated string that contains its own length
a pointer to a string of a specialized format
a pointer to a string of wide characters (not char )
a pointer to a wide character string
a specific system string type in OLE
a Unicode string that has its length prepended, and is also terminated by a zero character
|