Share via


Note

Please see Azure Cognitive Services for Speech documentation for the latest supported speech solutions.

Microsoft Speech Platform

CSpDynamicString::Append

The following methods append null-terminated strings together.

Appends the null-terminated source string to the end of the instance and returns the resulting string.

<pre IsFakePre="true" xmlns="http://www.w3.org/1999/xhtml"> <strong>WCHAR* Append(</strong> <strong>const WCHAR</strong> *<em>pszSrc</em> <strong>)</strong> </pre>

Parameters

  • pszSrc
    [in] The null-terminated source string to append.

Appends the null-terminated source string to the end of the instance and returns the resulting string. The size to append is specified.

<pre IsFakePre="true" xmlns="http://www.w3.org/1999/xhtml"> <strong>WCHAR* Append(</strong> <strong>const WCHAR</strong> *<em>pszSrc</em>, <strong>const ULONG</strong> <em>lenSrc</em> <strong>)</strong> </pre>

Parameters

  • pszSrc
    [in] The null-terminated source string to append.
  • lenSrc
    [in] Size, in WCHARs, to append.

Appends up to two null-terminated source strings to the end of the instance and returns the resulting string. At least one of the to strings must be non-NULL.

<pre IsFakePre="true" xmlns="http://www.w3.org/1999/xhtml"> <strong>WCHAR* Append2(</strong> <strong>const WCHAR</strong> *<em>pszSrc1</em>, <strong>const WCHAR</strong> *<em>pszSrc2</em> <strong>)</strong> </pre>

Parameters

  • pszSrc1
    [in] The first source string to append.
  • pszSrc2
    [in] The second source string to append.