您的位置:首页 > 其它

未分类--Windows API--SysFreeString

2014-01-15 20:57 302 查看
原文来自MSDN Library for Visual Studio 2008 SP1,翻译部分仅为个人观点,想要看更多信息请看MSDN,如有版权问题请联系QQ 643166601,邮件643166601@qq.com

 

Platform Builder for Microsoft Windows CE 5.0   

SysFreeString

This function frees a string allocated previously by SysAllocString, SysAllocStringByteLen, SysReAllocString, SysAllocStringLen, or SysReAllocStringLen.

这个函数释放之前由 SysAllocString, SysAllocStringByteLen, SysReAllocString, SysAllocStringLen, 或 SysReAllocStringLen申请的字符串。

HRESULT SysFreeString(

  BSTR bstr

);

Parameters

bstr

[in] Unicode string that was allocated previously, or NULL.

在之前申请的Unicode字符串或NULL。

Setting this parameter to NULL causes the function to simply return.

设置这个参数为NULL引起函数的简单返回。

Return Values

Returns an HRESULT value.

返回一个HRESULT值。

Requirements

OS Versions: Windows CE 2.0 and later.

Header: Oleauto.h.

Link Library: Oleaut32.lib.

See Also

Automation Functions | SysAllocString | SysAllocStringByteLen | SysReAllocString | SysAllocStringLen | SysReAllocStringLen

 

--------------------------------------------------------------------------------

Last updated on Wednesday, September 14, 2005

© 2005 Microsoft Corporation. All rights reserved.

 

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Windows API