WindowsConcatString 函数 (winstring.h)

连接两个指定的字符串。

语法

HRESULT WindowsConcatString(
  HSTRING string1,
  HSTRING string2,
  HSTRING *newString
);

参数

string1

类型:[in] HSTRING

要串联的第一个字符串。

string2

类型:[in] HSTRING

要串联的第二个字符串。

newString

类型:[out] HSTRING*

string1string2 的串联。 如果 string1string2NULL则 newStringNULL。 如果 string1string2NULL则 newString 是非 null 字符串的副本。

返回值

类型: HRESULT

此函数可以返回其中一个值。

返回代码 说明
S_OK
已成功创建串联的字符串。
E_INVALIDARG
newStringNULL,或 string1 的长度加上 string2 的长度大于 MAXUINT32,即 4,294,967,295;即十六进制0xFFFFFFFF。
E_OUTOFMEMORY
未能分配串联的字符串。

注解

每次对 WindowsConcatString 函数的调用都必须与对 WindowsDeleteString 的相应调用匹配。

要求

要求
最低受支持的客户端 Windows 8 [桌面应用 |UWP 应用]
最低受支持的服务器 Windows Server 2012 [桌面应用 |UWP 应用]
目标平台 Windows
标头 winstring.h

另请参阅

WindowsDeleteString