Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The STRING_CONTAINER structure contains a string.<10>
-
typedef struct _STRING_CONTAINER { DWORD cbBuf; [size_is(cbBuf/2), unique] WCHAR* pszString; } STRING_CONTAINER;
cbBuf: This member specifies the size, in bytes, of the buffer that is pointed to by the pszString member. The value of this number MUST be an even number.
pszString: A pointer to a string. The string that is referenced by this member MUST NOT be empty.