未分类--Windows API--SysFreeString

原文来自MSDN Library for Visual Studio 2008 SP1,翻译部分仅为个人观点,想要看更多信息请看MSDN,如有版权问题请联系QQ 643166601,邮件[email protected]

 

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)