Function CSPWString::Add()
Description:
Appends text to the existing text.
 |
Prototype:
void Add(wchar_t* pwszString, unsigne long ulLength);
Arguments:
- wchar_t* pwszString [IN]
The pointer to the text to add.
- unsigne long ulLength [IN]
The length of text in characters.
Return value:
No return value (void).
Remarks:
Use this function with caution. The caller is responsible for providing a valid pointer and a valid length for the appended text. When text is added through the call of this member function, a terminating zero is always appended.
|
|