Function CSPWString::GetPtr()
Description:
Retrieves the constant C-style string pointer of this string object.
 |
Prototype:
const wchar_t* GetPtr() const;
Arguments:
No arguments (void).
Return value:
Returns the C-style string pointer.
Examples:
CSPWString wstrText = L"Hello"; const wchar_t* pStr = wstrText.GetPtr();
See also:
member function operator const wchar_t* ()
|
|